source:
trunk/minix/commands/mined/Makefile@
15
| Last change on this file since 15 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 305 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | # Makefile for mined |
| 2 | ||
| 3 | CC = exec cc | |
| 4 | ||
| 5 | CFLAGS = -O -wo -D_MINIX -D_POSIX_SOURCE | |
| 6 | ||
| 7 | OBJ = mined1.o mined2.o | |
| 8 | ||
| 9 | all: mined | |
| 10 | ||
| 11 | mined: $(OBJ) | |
| 12 | $(CC) -i -o $@ $(OBJ) | |
| 13 | install -S 64k $@ | |
| 14 | ||
| 15 | install: /usr/bin/mined | |
| 16 | ||
| 17 | /usr/bin/mined: mined | |
| 18 | install -cs -o bin mined $@ | |
| 19 | ||
| 20 | $(OBJ): mined.h | |
| 21 | ||
| 22 | clean: | |
| 23 | rm -f mined *.o *.s core *.bak |
Note:
See TracBrowser
for help on using the repository browser.