home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / sanfrancisco_1989 / sf-devcon89.1 / commodities / include / cx / makefile < prev    next >
Makefile  |  1992-08-27  |  416b  |  26 lines

  1. # makefile for precompiled include files for
  2. # both aztec and lattice compilers.  Also builds prototypes
  3. # for lattice
  4.  
  5.  
  6. # aztec .pre file
  7.  
  8. PRE=cxusr.pre
  9. SYM=cxusr.sym
  10. PRESRC=sysall.h
  11. PRAGMA=cxlib.p
  12.  
  13. .fd.p:
  14.     fd2pragma $*.fd $*.p
  15.  
  16. all: $(PRAGMA) $(PRE) $(SYM)
  17.  
  18. $(PRAGMA): cxlib.fd
  19.  
  20.  
  21. $(PRE): $(PRESRC)
  22.     cc -DIAZTEC -A -o RAM:pre_garbage.asm +H$(PRE) $(PRESRC)
  23.  
  24. $(SYM): $(PRESRC)
  25.     lc1 -DILATTICE -ph -o$(SYM) $(PRESRC)
  26.