minix/commands/indent/Makefile

23 lines
354 B
Makefile
Raw Normal View History

2005-07-22 20:30:14 +02:00
# Makefile for indent
CFLAGS= -c -O -D_MINIX -D_POSIX_SOURCE -wo -m
2005-09-07 10:43:25 +02:00
CC = exec cc
2005-07-22 20:30:14 +02:00
all: indent
OBJ = args.o comment.o lexi.o indent.o parse.o io.o
indent: ${OBJ}
$(CC) -o indent -i ${OBJ}
install -S 32kw $@
install: /usr/bin/indent
/usr/bin/indent: indent
install -cs -o bin indent $@
$(OBJ): globs.h codes.h
clean:
rm -f *.bak *.o core indent