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