home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / amiga / progrmr / exp_src / makefile < prev    next >
Makefile  |  1991-05-20  |  1KB  |  56 lines

  1. #
  2. # $Author: Espie $
  3. # $Date: 91/05/16 15:07:52 $
  4. # $Revision: 1.4 $
  5. # $Log: makefile,v $
  6. # Revision 1.4  91/05/16  15:07:52  Espie
  7. # Updated lattice makefile, released version.
  8. #
  9. # Revision 1.3  91/05/10  13:57:54  Espie
  10. # *** empty log message ***
  11. #
  12. # Revision 1.2  91/04/29  15:10:49  Espie
  13. # Added interface
  14. #
  15. # Revision 1.1  91/04/24  15:32:56  Espie
  16. # Initial revision
  17. #
  18. #
  19. #
  20. # This stuff is NOT debugged for dependencies,
  21. # use at your own risk !
  22. #
  23. OBJECT=load.o dump.o audio_hard.o play.o \
  24. interrupt.o periods.o critical.o interface.o \
  25. events.o audio_soft.o requester.o libraries.o \
  26. files.o workbench.o commands.o cleanup.o mymain.o
  27.  
  28. CFLAGS=-E -cq -q50e -O
  29.  
  30.  
  31. LFLAGS=verbose
  32.  
  33. LIB=lib lib:lc.lib lib:amiga.lib lib:custom.lib
  34. START=lib:cback.o
  35.  
  36. exp: dump
  37.         copy dump exp
  38. dump: $(OBJECT)
  39.         blink <with <
  40. $(START) $(OBJECT) to $@ $(LIB) $(LFLAGS)
  41. <
  42. mymain.o: mymain.c
  43.     lc $(CFLAGS) -dTINY $*
  44. play.o: play.c song.h player.h int_play.h public_play.h
  45.         lc $(CFLAGS) -v $*
  46. commands.o: commands.c player.h
  47.         lc $(CFLAGS) -v $*
  48. audio_hard.o: audio_hard.c song.h int_play.h player.h
  49.         lc $(CFLAGS) -v $*
  50. interrupt.o: interrupt.c song.h player.h int_play.h public_play.h
  51.         lc $(CFLAGS) $*
  52. process.o: process.c song.h
  53.         lc $(CFLAGS) -v $*
  54. .c.o: song.h public_play.h
  55.         lc $(CFLAGS) $*
  56.