home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d5xx / d588 / mandelsquare.lha / MandelSquare / Source / MakeFile < prev    next >
Makefile  |  1992-01-04  |  547b  |  20 lines

  1. .c.o:
  2.     LC $(CFLAGS) $*.c
  3.  
  4. .asm.o:
  5.     ASM -IASM: -M2 $*.asm
  6.  
  7. CFLAGS        = -ccimqws -fd8 -b1 -r1 -v -mt3 -O -HMandel.SYM
  8. LFLAGS        = SC SD ND DEFINE __main=__tinymain
  9. #LFLAGS        = SC SD ND
  10. LIBS        = playanim.lib saveanim.lib LIB:lcm881.lib LIB:lc.lib LIB:amiga2.0.lib
  11. OBJS        = MandelSquare.o FPInit.o ReadILBM.o SaveILBM.o WaitLine.o Font.o Plot.o Iterate.o
  12.  
  13. all:        Mandel.SYM MandelSquare
  14.  
  15. MandelSquare:    $(OBJS) playanim.lib saveanim.lib
  16.         BLINK LIB:c.o $(OBJS) TO MandelSquare LIB $(LIBS) $(LFLAGS)
  17.  
  18. Mandel.SYM:    PreInclude.c
  19.         LC -ph -oMandel.SYM PreInclude.c
  20.