port of netbsd's tr
[minix.git] / commands / dhcpd / Makefile
blob70921fdc566538aa36573686472aef3f7c678120
1 # Makefile for dhcpd.
3 CFLAGS = $(OPT) -D_MINIX
4 LDFLAGS =
5 CC = exec cc
7 all: dhcpd
9 OBJ= dhcpd.o tags.o devices.o ether.o
11 dhcpd: $(OBJ)
12 $(CC) $(LDFLAGS) -o $@ $(OBJ)
13 install -S 12kw $@
15 install: /usr/bin/dhcpd
17 /usr/bin/dhcpd: dhcpd
18 install -c $? $@
20 clean:
21 rm -f *.o dhcpd core a.out
23 # Dependencies.
24 $(OBJ): dhcpd.h
25 dhcpd.o ether.o: arp.h