home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ForCLI / PrintDate.lha / PrintDate / makefile < prev    next >
Encoding:
Makefile  |  1992-02-02  |  537 b   |  32 lines

  1. #
  2. #        Makefile for PrintDate (AztecC v5.2a)
  3. #
  4. # Macros
  5. #
  6. PRECOMP=ram:printdate.pre
  7. DEFINES=
  8. MYCFLAGS=-ms -pacs0t -so -wdelopqw
  9.  
  10. CFLAGS=$(MYCFLAGS) $(DEFINES) -hi $(PRECOMP)
  11. LFLAGS=-m +q
  12.  
  13. OBJECTS=printdate.o
  14.  
  15. LIBRARIES=-la16 -lc16
  16.  
  17. #
  18. # Dependancy entries
  19. #
  20. all: $(PRECOMP) printdate
  21. #
  22. $(PRECOMP): printdate.pre
  23.    copy printdate.pre $(PRECOMP) clone
  24. #
  25. printdate.pre: includes.h
  26.    cc -o nil: -ho $(PRECOMP) -a $(MYCFLAGS) includes.h
  27.    copy $(PRECOMP) $@ clone
  28. #
  29. printdate: $(OBJECTS)
  30.    ln $(LFLAGS) -o $@ $(OBJECTS) $(LIBRARIES)
  31. #
  32.