home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 54 / af054sub.adf / DTree.lha / DTree / DTree.makefile < prev    next >
Makefile  |  1993-08-26  |  288b  |  12 lines

  1. # SAS/C 6.x makefile
  2. # Type "smake -f DTree.makefile" to compile.
  3.  
  4. CFLAGS = NOWVRET NOICONS STRMER NOSTKCHK NOSTDIO OPT
  5. LFLAGS = STRIPDEBUG NODEBUG SMALLCODE SMALLDATA
  6.  
  7. DTree: DTree.o
  8.     slink lib:cres.o,DTree.o to DTree $(LFLAGS) lib lib:sc.lib
  9.  
  10. DTree.o: DTree.c
  11.     sc DTree $(CFLAGS)
  12.