minix/commands/dhcpd/Makefile
2005-09-07 08:43:25 +00:00

26 lines
348 B
Makefile
Executable file

# Makefile for dhcpd.
CFLAGS = $(OPT) -D_MINIX
LDFLAGS =
CC = exec cc
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