home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1998 #6
/
amigamamagazinepolishissue1998.iso
/
coders
/
indent
/
makefile.amiga
< prev
next >
Wrap
Makefile
|
2000-04-21
|
723b
|
25 lines
# Makefile for GNU Indent using SAS/C 5.10
# (Couldn't get it to compile under SAS/C 6.0 -- the new compiler
# produces faulty code!!!!)
CFLAGS = -dAMIGA -j85i
LC = lc
SRC = indent.c io.c lexi.c parse.c pr_comment.c args.c globs.c backup.c
OBJ = indent.o io.o lexi.o parse.o pr_comment.o args.o globs.o backup.o
HEADERS = indent_globs.h version.h
all: indent
indent: ${OBJ}
blink from lib:c.o ${OBJ} to indent lib lib:lcm.lib lib:lc.lib nodebug
indent.o: indent.c indent.h sys.h
io.o: io.c indent.h sys.h
lexi.o: lexi.c indent.h sys.h
parse.o: parse.c indent.h sys.h
pr_comment.o: pr_comment.c indent.h sys.h
args.o: args.c indent.h sys.h version.h
globs.o: globs.c sys.h
backup.o: backup.c backup.h sys.h