home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / PPCUnACE.lha / PPCUnACE / source.lha / Src / smakefile < prev    next >
Makefile  |  1998-02-18  |  948b  |  30 lines

  1. # smakefile for UnACE for powerUP (TM)
  2. # 1998 by Andreas R. Kleinert
  3.  
  4. CC   = SCPPC
  5. OBJS = Uac_crc.o Globals.o Uac_crt.o Unace.o Uac_sys.o Uac_dcpr.o Uac_comm.o
  6.  
  7. Unace: $(OBJS)
  8.  
  9.    ppc-amigaos-ld -r lib:c_ppc.o $(OBJS) LIB:scppc.a lib:end.o -o UnACE.elf
  10.    Copy UnACE.elf /
  11.  
  12. Globals.o: Globals.c os.h acestruc.h unace.h declare.h portable.h
  13.  
  14. Uac_crc.o: Uac_crc.c uac_crc.h declare.h os.h
  15.  
  16. Uac_crt.o: Uac_crt.c os.h attribs.h globals.h uac_crt.h uac_sys.h unace.h \
  17.            acestruc.h declare.h portable.h
  18.  
  19. Uac_comm.o: Uac_comm.c uac_dcpr.h uac_comm.h unace.h declare.h os.h
  20.  
  21. Uac_dcpr.o: Uac_dcpr.c os.h globals.h portable.h uac_comm.h uac_crc.h \
  22.             uac_dcpr.h uac_sys.h unace.h acestruc.h declare.h
  23.  
  24. Uac_sys.o: Uac_sys.c globals.h uac_sys.h unace.h acestruc.h declare.h \
  25.            portable.h os.h
  26.  
  27. Unace.o: Unace.c os.h globals.h portable.h uac_comm.h uac_crc.h uac_crt.h \
  28.          uac_dcpr.h uac_sys.h unace.h acestruc.h declare.h
  29.  
  30.