home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / lib / mathlib / libfft / fft2 / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  482 b   |  28 lines

  1. #!smake
  2. include ../demodefs
  3.  
  4. TARGETS = fast
  5.  
  6. #LIBFFT  = ../mips1/libfft.a
  7. #LIBFFT  = ../mips2/libfft.a
  8. #LIBFFT  = ../mp_mips1/libfft.a
  9. LIBFFT  = ../mp_mips2/libfft.a
  10. LLDLIBS = $(LIBFFT) -lgl -lblas -mp
  11.  
  12. CFILES = main.c fast.c draw.c init.c menu.c event.c second.c
  13. FFILES = noise.f
  14. HFILES = fast.h event.h
  15.  
  16. include ../demorules
  17.  
  18. OPT = -O
  19. MPFLAG = -mp
  20. MIPS   = -mips2
  21. FFLAGS = $(OPT) $(MIPS) $(MPFLAG)
  22.  
  23. ${TARGETS}: ${OBJECTS}
  24.     ${F77} -o $@ ${OBJECTS} ${LLDLIBS}
  25.     ${TAG} 0x9006 $@
  26.  
  27.