home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / dev / ppcsmalleiffel / source.lha / bin_c / smake_compile < prev    next >
Encoding:
Text File  |  1998-02-27  |  370 b   |  14 lines

  1. #SAS/C smakefile for powerUP (TM) PPC Amiga systems
  2. #(for 68k Amigas, it should suffice to change "CC" and "STARTUP" below)
  3. #written by Andreas R. Kleinert in 1998
  4.  
  5. CC      = SCPPC
  6. STARTUP = LIB:c_ppc.o
  7. PROG    = /bin/compile
  8. PROG2   = ../bin/compile
  9. OBJS    = compile.o
  10.  
  11. $(PROG): $(OBJS)
  12.  
  13.          ppc-amigaos-ld -r $(STARTUP) $(OBJS) LIB:scppc.a lib:end.o -o $(PROG2)
  14.