source:
trunk/minix/commands/indent/Makefile@
11
| Last change on this file since 11 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 354 bytes | |
| Line | |
|---|---|
| 1 | # Makefile for indent |
| 2 | |
| 3 | CFLAGS= -c -O -D_MINIX -D_POSIX_SOURCE -wo -m |
| 4 | CC = exec cc |
| 5 | |
| 6 | all: indent |
| 7 | |
| 8 | OBJ = args.o comment.o lexi.o indent.o parse.o io.o |
| 9 | |
| 10 | indent: ${OBJ} |
| 11 | $(CC) -o indent -i ${OBJ} |
| 12 | install -S 32kw $@ |
| 13 | |
| 14 | install: /usr/bin/indent |
| 15 | |
| 16 | /usr/bin/indent: indent |
| 17 | install -cs -o bin indent $@ |
| 18 | |
| 19 | $(OBJ): globs.h codes.h |
| 20 | |
| 21 | clean: |
| 22 | rm -f *.bak *.o core indent |
Note:
See TracBrowser
for help on using the repository browser.