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