home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Orlando_1993 / Devcon93.4 / CAMD / examples / oldexamples / mm / makefile < prev    next >
Encoding:
Makefile  |  1993-01-12  |  707 b   |  28 lines

  1. #---------------------------------------------------------------------------
  2. # makefile to create "mm" MIDI utility
  3. # This makefile is to be used with Lattice 5.1x and blink
  4.  
  5. OBJECTS=  mm.o
  6.  
  7. NAME   =  mm
  8.  
  9. CFLAGS =  -b1 -cfist -v -i///include -iLATTICEI:
  10. # INCLUDE: contains at V37 Native Developer includes
  11. # LATTICEI: contains Lattice 5.1 includes
  12. # ///include has the camd & realtime includes
  13.  
  14. CC     =  lc
  15. LN     =  blink
  16.  
  17. LIBS = LATTICEL:lc.lib LIB:amiga.lib 
  18. # LATTICEL: contains the standard lattice libraries
  19. # LIB: contains the Native Developer Update linker libs
  20.  
  21. #  RULES:
  22. .c.o:
  23.         $(CC)  $(CFLAGS) $*.c
  24.  
  25. #  LINK:
  26. $(NAME):    $(OBJECTS)
  27.         $(LN) FROM LATTICEL:c.o,$(OBJECTS) TO $(NAME) LIBRARY $(LIBS)
  28.