kernel: new DEBUG_RACE option. try to provoke race conditions between processes.
[minix.git] / commands / indent / Makefile
blob35581d74df82b56d5efdfeef8e9466e9da01284e
1 # Makefile for indent
3 CFLAGS= -c -O -D_MINIX -D_POSIX_SOURCE -wo -m
4 CC = exec cc
6 all: indent
8 OBJ = args.o comment.o lexi.o indent.o parse.o io.o
10 indent: ${OBJ}
11 $(CC) -o indent -i ${OBJ}
12 install -S 32kw $@
14 install: /usr/bin/indent
16 /usr/bin/indent: indent
17 install -cs -o bin indent $@
19 $(OBJ): globs.h codes.h
21 clean:
22 rm -f *.bak *.o core indent