home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / packery / unsit1.5c.amiga / src / makefile < prev    next >
Makefile  |  2005-04-30  |  325b  |  15 lines

  1. # Makefile for Unsit v1.5
  2. #
  3. # Compiled with Manx 5.0e1
  4. # Amiga version, optimizations, small code/small data
  5. CFLAGS = -DAMIGA -so
  6.  
  7. SOURCES = unsit.c updcrc.c getopt.c pio.c
  8. OBJECTS = unsit.o updcrc.o getopt.o pio.o
  9.  
  10. unsit: $(OBJECTS) unstuffit.h pio.h
  11.      ln -o unsit $(OBJECTS) -lc
  12.  
  13. .c.o: $(SOURCES)
  14.      cc $(CFLAGS) $*.c
  15.