home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 076.lha / Marketroid_Sources / Makefile < prev    next >
Encoding:
Makefile  |  1986-11-20  |  310 b   |  16 lines

  1. # :ts=8 bk=0
  2. #
  3. # Makefile for Marketroid.
  4. #
  5.  
  6. OBJECTS =    marketroid.o anim.o cycle.o text.o misc.o
  7. IMAGES    =    goodguys.o badguys.o miscimg.o scores.o letters.o
  8.  
  9. marketroid: $(OBJECTS) $(IMAGES) rnd.o
  10.     ln $(OBJECTS) $(IMAGES) rnd.o +cd -lc -o marketroid
  11.  
  12. $(IMAGES): 
  13.     cc -s $*.c
  14.  
  15. $(OBJECTS) $(IMAGES): marketroid.h
  16.