home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-03-17 | 903 b | 37 lines |
- INCLUDE = -j$$.usr.pmoore.utils
- LINK = cc -o
- LFLAGS =
- CC = cc -c
- CFLAGS =
- LIBS = -Llib:stubs.o -Llib:utils.o
- # There appears to be a bug in ansilib -- no mktime -- so I'm using stubs for now :-(
-
- all: !RunImage
- echo all up to date
-
- !RunImage: o.args o.comment o.globs o.indent o.io o.lexi o.parse
- $(LINK) !RunImage $(LFLAGS) args.o comment.o globs.o indent.o io.o lexi.o parse.o $(LIBS)
-
- # add the headers some time, and mkptypes for the auto-generated headers...
-
- o.args: c.args
- $(CC) $(CFLAGS) args.c $(INCLUDE)
-
- o.comment: c.comment
- $(CC) $(CFLAGS) comment.c $(INCLUDE)
-
- o.globs: c.globs
- $(CC) $(CFLAGS) globs.c $(INCLUDE)
-
- o.indent: c.indent
- $(CC) $(CFLAGS) indent.c $(INCLUDE)
-
- o.io: c.io
- $(CC) $(CFLAGS) io.c $(INCLUDE)
-
- o.lexi: c.lexi
- $(CC) $(CFLAGS) lexi.c $(INCLUDE)
-
- o.parse: c.parse
- $(CC) $(CFLAGS) parse.c $(INCLUDE)
-