home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 580a.lha / AM / Makefile < prev    next >
Makefile  |  1991-11-21  |  259b  |  20 lines

  1. #
  2. # AM: Algorithmische Musik
  3. #
  4.  
  5. CFLAGS = -ff -hi AM.hdr -qf
  6. LIBS = -lmf -lc
  7. OBJS = am.o amwindow.o
  8.  
  9. am: am.hdr $(OBJS)
  10.     ln $(OBJS) $(LIBS) -o am
  11.  
  12. test: test.o
  13.     ln test.o $(LIBS)
  14.  
  15. takt: AM.hdr takt.o
  16.     ln takt.o $(LIBS)
  17.  
  18. AM.hdr: AM.h
  19.     cc -a -ff -ho AM.hdr AM.h
  20.