home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-02-02 | 537 b | 32 lines |
- #
- # Makefile for PrintDate (AztecC v5.2a)
- #
- # Macros
- #
- PRECOMP=ram:printdate.pre
- DEFINES=
- MYCFLAGS=-ms -pacs0t -so -wdelopqw
-
- CFLAGS=$(MYCFLAGS) $(DEFINES) -hi $(PRECOMP)
- LFLAGS=-m +q
-
- OBJECTS=printdate.o
-
- LIBRARIES=-la16 -lc16
-
- #
- # Dependancy entries
- #
- all: $(PRECOMP) printdate
- #
- $(PRECOMP): printdate.pre
- copy printdate.pre $(PRECOMP) clone
- #
- printdate.pre: includes.h
- cc -o nil: -ho $(PRECOMP) -a $(MYCFLAGS) includes.h
- copy $(PRECOMP) $@ clone
- #
- printdate: $(OBJECTS)
- ln $(LFLAGS) -o $@ $(OBJECTS) $(LIBRARIES)
- #
-