home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / PPCxDMS.lha / PPCxDMS / source.lha / src / smakefile < prev    next >
Makefile  |  1998-02-28  |  875b  |  34 lines

  1. # smakefile for xDMS for powerUP (TM)
  2. # 1998 by Andreas R. Kleinert
  3.  
  4. CC   = SCPPC
  5. OBJS = getbits.o u_medium.o u_quick.o tables.o maketbl.o u_rle.o \
  6.        crc_csum.o u_heavy.o xdms.o pfile.o u_deep.o
  7.  
  8. /Amiga-bin/xDMS: $(OBJS)
  9.  
  10.    ppc-amigaos-ld -r lib:c_ppc.o $(OBJS) LIB:scppc.a lib:end.o -o ../Amiga-bin/xDMS.elf
  11.  
  12. getbits.o: getbits.c cdata.h getbits.h
  13.  
  14. tables.o: tables.c cdata.h
  15.  
  16. maketbl.o: maketbl.c cdata.h maketbl.h
  17.  
  18. crc_csum.o: crc_csum.c cdata.h crc_csum.h
  19.  
  20. u_rle.o: u_rle.c cdata.h u_rle.h
  21.  
  22. u_quick.o: u_quick.c cdata.h u_quick.h getbits.h
  23.  
  24. u_medium.o: u_medium.c cdata.h u_medium.h getbits.h tables.h cdata.h
  25.  
  26. u_deep.o: u_deep.c cdata.h u_deep.h getbits.h
  27.  
  28. u_heavy.o: u_heavy.c cdata.h u_heavy.h getbits.h maketbl.h
  29.  
  30. xdms.o: xdms.c cdata.h pfile.h crc_csum.h
  31.  
  32. pfile.o: pfile.c cdata.h u_rle.h u_quick.h u_medium.h u_deep.h \
  33.          u_heavy.h crc_csum.h pfile.h
  34.