source:
trunk/minix/commands/de/Makefile@
11
| Last change on this file since 11 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 323 bytes | |
| Line | |
|---|---|
| 1 | # Makefile for de |
| 2 | |
| 3 | CC = exec cc |
| 4 | CFLAGS = -O -D_MINIX -D_POSIX_SOURCE -D_POSIX_1_SOURCE=2 |
| 5 | |
| 6 | all: de |
| 7 | |
| 8 | OBJS = de.o de_stdin.o de_stdout.o de_diskio.o de_recover.o |
| 9 | |
| 10 | de: $(OBJS) |
| 11 | $(CC) -i $(OBJS) -o de |
| 12 | install -S 4kw de |
| 13 | |
| 14 | install: /usr/bin/de |
| 15 | |
| 16 | /usr/bin/de: de |
| 17 | install -cs -o bin de $@ |
| 18 | |
| 19 | $(OBJS): de.h |
| 20 | |
| 21 | clean: |
| 22 | rm -f *.bak *.o de |
Note:
See TracBrowser
for help on using the repository browser.