13 lines
192 B
Makefile
13 lines
192 B
Makefile
# makefile for the 'indent' command
|
|
|
|
CFLAGS = -O
|
|
|
|
OBJS = indent.o io.o lexi.o parse.o comment.o args.o
|
|
|
|
indent: ${OBJS}
|
|
$(CC) -o indent ${OBJS}
|
|
chmem =8192 indent
|
|
|
|
$(OBJS): globs.h codes.h
|
|
|