home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / fractals / rm2.lha / makefile < prev    next >
Encoding:
Makefile  |  1994-01-01  |  284 b   |  19 lines

  1. # Aztec 5.0a compiler options
  2.  
  3. all:    rm2
  4.  
  5. CFLAGS=-mc -md -su
  6.  
  7. rm2:    rm2.o testpoint.o
  8.     ln rm2.o testpoint.o -lm8 -lcl
  9.  
  10. test:    rm2
  11.     rm2 /r -.8 /i .75 /w .4 /h
  12.  
  13. rm2.o:    rm2.c
  14.     cc -so rm2.c -o rm2.o -mc -md -su -f8 -so -c2
  15.  
  16. testpoint.o:    testpoint.asm
  17.     as -o testpoint.o -l -v testpoint.asm
  18.  
  19.