source: trunk/minix/commands/dhcpd/Makefile@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 348 bytes
Line 
1# Makefile for dhcpd.
2
3CFLAGS = $(OPT) -D_MINIX
4LDFLAGS =
5CC = exec cc
6
7all: dhcpd
8
9OBJ= dhcpd.o tags.o devices.o ether.o
10
11dhcpd: $(OBJ)
12 $(CC) $(LDFLAGS) -o $@ $(OBJ)
13 install -S 12kw $@
14
15install: /usr/bin/dhcpd
16
17/usr/bin/dhcpd: dhcpd
18 install -c $? $@
19
20clean:
21 rm -f *.o dhcpd core a.out
22
23# Dependencies.
24$(OBJ): dhcpd.h
25dhcpd.o ether.o: arp.h
Note: See TracBrowser for help on using the repository browser.