home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / nextstep / expanded / LocalApps / Executor.app / ardimods / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-15  |  743 b   |  36 lines

  1. # ARDIMODS V1.3 Makefile, accept no substitutes
  2.  
  3. SERVER_OBJ= ardimods_main.o ardimods.o
  4. CFLAGS= -g -DKERNEL -DKERNEL_FEATURES -DMACH 
  5. ALL=ardimods_reloc
  6. DESTDIR=/LocalApps
  7.  
  8. #
  9. # NOTE: the install directive leaves
  10. #    ardimods_reloc in the current directory (which is where it needs
  11. #    to be).
  12. #
  13.  
  14. # NOTE:  FASTALINETRAPS is no longer an option; it's always turned on.
  15. #     There is no reason to turn it off.
  16.  
  17. all:    $(ALL)
  18.  
  19. install:    ardimods_reloc
  20.  
  21. ardimods_reloc: ${SERVER_OBJ} LoadCommands UnloadCommands
  22.     kl_ld -n ardimods -l LoadCommands -u UnloadCommands -i instance \
  23.         -o $@ ${SERVER_OBJ}
  24.  
  25. clean:
  26.     rm -f *.o
  27.     rm -f $(ALL)
  28.     
  29. ardimods.o ardimods_main.o:    Makefile
  30.  
  31. .c.o:
  32.     ${CC} ${CFLAGS} ${ARDIOPTIONS} -c $*.c
  33.  
  34. .s.o:
  35.     $(CC) ${ARDIOPTIONS} -c $*.s
  36.