minix/commands/dhcpd/Makefile

25 lines
335 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for dhcpd.
CFLAGS = $(OPT) -D_MINIX
LDFLAGS =
all: dhcpd
OBJ= dhcpd.o tags.o devices.o ether.o
dhcpd: $(OBJ)
$(CC) $(LDFLAGS) -o $@ $(OBJ)
install -S 12kw $@
install: /usr/bin/dhcpd
/usr/bin/dhcpd: dhcpd
install -c $? $@
clean:
rm -f *.o dhcpd core a.out
# Dependencies.
$(OBJ): dhcpd.h
dhcpd.o ether.o: arp.h