home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / PPCUnARJ241.lha / PPCUnARJ / source.lha / source / smakefile < prev    next >
Makefile  |  1998-02-07  |  440b  |  22 lines

  1. # Makefile for UnARj for SAS/C 6.58 (for options see file SCOPTIONS)
  2. # powerUP (TM) version
  3.  
  4. UnArj.elf: UnArj.o decode.o environ.o
  5.  
  6.           ppc-amigaos-ld -r lib:c_ppc.o UnArj.o decode.o environ.o LIB:scppc.a lib:end.o -o UnArj.elf
  7.           Copy UnArj.elf /
  8.  
  9. UnArj.o:   UnArj.c
  10.  
  11.            SCPPC UnArj.c
  12.  
  13. decode.o:  decode.c unarj.h
  14.  
  15.            SCPPC decode.c
  16.  
  17. environ.o: environ.c unarj.h
  18.  
  19.            SCPPC environ.c
  20.  
  21. # end of makefile
  22.