home *** CD-ROM | disk | FTP | other *** search
/ ftp.4front-tech.com / ftp.4front-tech.com.tar / ftp.4front-tech.com / ossfree / snd-util-3.8.tar.gz / snd-util-3.8.tar / sndkit / fm / Makefile next >
Makefile  |  1980-01-01  |  211b  |  15 lines

  1. CC    = cc
  2. CFLAGS    = -O
  3. MIDIFILE = ./midifile
  4.  
  5. all:        sbiset fmtest wbset
  6.  
  7. fmtest:        fmtest.o
  8.         $(CC) -s -o fmtest fmtest.o
  9.  
  10. sbiset:        sbiset.o
  11.         $(CC) -s -o sbiset sbiset.o
  12.  
  13. clean:
  14.     rm -f sbiset fmtest wbset core *.o
  15.