source: trunk/minix/commands/indent/Makefile@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

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