# ------------------------------------------------------------------
# This file is part of bzip2/libbzip2, a program and library for
# lossless, block-sorting data compression.
#
# bzip2/libbzip2 version 1.0.6 of 6 September 2010
# Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
#
# Please read the WARNING, DISCLAIMER and PATENTS sections in the 
# README file.
#
# This program is released under the terms of the license contained
# in the file LICENSE.
# ------------------------------------------------------------------

include ../config.mk
include ../config.in


#BUILD_DIR = $(TARGETDIR)/usr/sbin
#MANDIR = $(TARGETDIR)/usr/man

CURR_DIR := $(shell pwd)

SHELL=/bin/sh

# To assist in cross-compiling
dddEXE_EXT= 
ARFLAGS= 

all: mdns

mdns:
	$(CC) -o mdns mdns.c

install:
	cp mdns $(TARGETDIR)/usr/sbin
clean:
	-rm -f mdns
