home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / c / itf_src / makefile.st < prev    next >
Makefile  |  1993-09-13  |  536b  |  21 lines

  1. #
  2. #    Makefile for compiling InfoTaskForce Infocom Interpreter on Atari ST
  3. #    with Sozobon C version 2.0
  4. #
  5.  
  6. OBJECTS =    enhanced.o file.o fns.o globals.o infocom.o init.o input.o\
  7.         interp.o io.o jump.o message.o object.o options.o\
  8.         page.o plus_fns.o print.o property.o status.o\
  9.         support.o variable.o
  10.  
  11. H    =    machine.h infocom.h atari_io.h
  12.  
  13. CFLAGS = -O -UATARI_ST -DVT52 -DCHEAT      # The compiler defines SOZOBON
  14.  
  15. infocom.ttp: $(OBJECTS)
  16.     ld -pb -f atari.ld -o infocom.ttp
  17.  
  18. $(OBJECTS): $(H) makefile.st
  19. io.o: atari_io.c
  20.  
  21.