home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 177.lha / Deemu_v1.0 / Makefile < prev    next >
Makefile  |  1988-04-28  |  587b  |  26 lines

  1.  
  2. #   Makefile for config and clock    AZTEC C, +L (32 bit ints)
  3. #
  4. #   NOTE:  I rely on a precompiled include file.  If you do not have such
  5. #   a file, it should not be too hard to add the appopriate #include's...
  6. #   my precompiled include files (precompiled under +L and +H) has only
  7. #   the sub-directory Amiga includes  (*/*.h).
  8.  
  9. SYMS=    include:symbols.m
  10. SYMC=    include:local/makesymbols.c
  11. CFLAGS= +L +I$(SYMS)
  12.  
  13.  
  14. all:    $(SYMS) config clock
  15.  
  16. config:     config.o
  17.     ln +Q config.o -lc32
  18.  
  19. clock:        clock.o
  20.     ln +Q clock.o -lc32
  21.  
  22. $(SYMS):    $(SYMC)
  23.     make -f include:local/Makefile
  24.  
  25.  
  26.