home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gfx / megajitter-1.3.lha / MegaJitter-1.3 / makefile < prev    next >
Makefile  |  1994-05-19  |  987b  |  44 lines

  1. #############################################################################
  2. # MegaJitter V1.3 Makefile            (C) 1994 L.Vanhelsuwé
  3. # ------------------------            ---------------------
  4. # Building tools:
  5. #     - SAS C V6.1 C compiler
  6. #     - GenAm 3.01 Assembler
  7. #############################################################################
  8.  
  9. PROGRAM = MJ
  10.  
  11. ASDIR = B:DEVEL/Devpac
  12. ASSEM = $(ASDIR)/Genam
  13.  
  14. # List all the object modules that are needed to build $(PROGRAM)
  15. # (Order is not important since that's handled by .WTH file passed to BLink)
  16.  
  17. OBJ = mj.o ja.o
  18.  
  19. #CFLAGS = -v -cus -m2 -iinclude:
  20. #CFLAGS = -v -cfus -m2 -iinclude:
  21. #CFLAGS = -v -cus -m2 -iinclude:
  22. CFLAGS = 
  23.  
  24. .s.o:
  25.     $(ASSEM) $* -VP=68030 -D -L -Iinclude: -H$(ASDIR)/system2.gs
  26.  
  27. .c.o:
  28.     SC:C/sc $(CFLAGS) $*.c 
  29.  
  30.  
  31. $(PROGRAM):  $(OBJ) 
  32.     SC:C/slink WITH mj.wth NODEBUG
  33.  
  34. # First of all the dependencies of the program modules
  35.  
  36. ja.o:            ja.s include:std
  37.  
  38. # Then finally the dependencies for the main module.
  39.  
  40. mj.o:            mj.c SCOPTIONS
  41.