home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / d / d-linux.zip / dm-dist / makefile < prev    next >
Makefile  |  1992-11-20  |  5KB  |  91 lines

  1. CC=gcc 
  2. CFLAGS = 
  3. HEADERFILES = structs.h utils.h comm.h interpreter.h db.h
  4. dmserver : comm.o act.comm.o act.informative.o act.movement.o act.obj1.o act.obj2.o act.offensive.o act.other.o act.social.o act.wizard.o handler.o db.o interpreter.o utility.o spec_assign.o shop.o limits.o mobact.o fight.o modify.o weather.o spell_parser.o spells1.o spells2.o reception.o constants.o spec_procs.o signals.o board.o mar_fiz_maz.o magic.o
  5. comm.o : comm.c structs.h utils.h comm.h interpreter.h handler.h db.h
  6.     $(CC) -c -g $(CFLAGS) comm.c
  7. act.comm.o : act.comm.c structs.h utils.h comm.h interpreter.h handler.h \
  8.   db.h spells.h
  9.     $(CC) -c $(CFLAGS) act.comm.c
  10. act.informative.o : act.informative.c structs.h utils.h comm.h \
  11.   interpreter.h handler.h db.h spells.h limits.h
  12.     $(CC) -c $(CFLAGS) act.informative.c
  13. act.movement.o : act.movement.c structs.h utils.h comm.h interpreter.h \
  14.   handler.h db.h spells.h
  15.     $(CC) -c $(CFLAGS) act.movement.c
  16. act.obj1.o : act.obj1.c structs.h utils.h comm.h interpreter.h handler.h \
  17.   db.h spells.h
  18.     $(CC) -c $(CFLAGS) act.obj1.c
  19. act.obj2.o : act.obj2.c structs.h utils.h comm.h interpreter.h handler.h \
  20.   db.h spells.h
  21.     $(CC) -c $(CFLAGS) act.obj2.c
  22. act.offensive.o : act.offensive.c structs.h utils.h comm.h interpreter.h \
  23.   handler.h db.h spells.h
  24.     $(CC) -c $(CFLAGS) act.offensive.c
  25. act.other.o : act.other.c structs.h utils.h comm.h interpreter.h handler.h \
  26.   db.h spells.h
  27.     $(CC) -c $(CFLAGS) act.other.c
  28. act.social.o : act.social.c structs.h utils.h comm.h interpreter.h \
  29.   handler.h db.h spells.h
  30.     $(CC) -c $(CFLAGS) act.social.c
  31. act.wizard.o : act.wizard.c structs.h utils.h comm.h interpreter.h \
  32.   handler.h db.h spells.h limits.h
  33.     $(CC) -c $(CFLAGS) act.wizard.c
  34. handler.o : handler.c structs.h utils.h db.h
  35.     $(CC) -c -g $(CFLAGS) handler.c 
  36. db.o : db.c structs.h utils.h db.h comm.h handler.h
  37.     $(CC) -c $(CFLAGS) db.c
  38. interpreter.o : interpreter.c structs.h comm.h interpreter.h db.h utils.h \
  39.   limits.h
  40.     $(CC) -c $(CFLAGS) interpreter.c 
  41. utility.o : utility.c structs.h utils.h
  42.     $(CC) -c $(CFLAGS) utility.c
  43. spec_assign.o : spec_assign.c structs.h db.h
  44.     $(CC) -c $(CFLAGS) spec_assign.c
  45. spec_procs.o : spec_procs.c structs.h utils.h comm.h interpreter.h \
  46.   handler.h db.h spells.h limits.h
  47.     $(CC) -c $(CFLAGS) spec_procs.c
  48. limits.o : limits.c limits.h structs.h utils.h spells.h comm.h
  49.     $(CC) -c $(CFLAGS) limits.c
  50. fight.o : fight.c structs.h utils.h comm.h handler.h interpreter.h db.h \
  51.   spells.h
  52.     $(CC) -c -g $(CFLAGS) fight.c
  53. weather.o : weather.c structs.h utils.h comm.h handler.h interpreter.h db.h
  54.     $(CC) -c $(CFLAGS) weather.c
  55. shop.o : shop.c structs.h comm.h handler.h db.h interpreter.h utils.h
  56.     $(CC) -c $(CFLAGS) shop.c
  57. spells1.o : spells1.c structs.h utils.h comm.h db.h interpreter.h spells.h \
  58.   handler.h
  59.     $(CC) -c $(CFLAGS) spells1.c 
  60. spells2.o : spells2.c structs.h utils.h comm.h db.h interpreter.h spells.h \
  61.   handler.h
  62.     $(CC) -c $(CFLAGS) spells2.c 
  63. magic.o : spells2.c structs.h utils.h comm.h db.h interpreter.h spells.h \
  64.   handler.h
  65.     $(CC) -c $(CFLAGS) magic.c 
  66. spell_parser.o : spell_parser.c structs.h utils.h comm.h db.h interpreter.h \
  67.   spells.h handler.h
  68.     $(CC) -c $(CFLAGS) spell_parser.c 
  69. mobact.o : mobact.c utils.h structs.h db.h
  70.     $(CC) -c $(CFLAGS) mobact.c
  71. modify.o : modify.c structs.h utils.h interpreter.h handler.h db.h comm.h
  72.     $(CC) -c $(CFLAGS) modify.c
  73. reception.o : reception.c structs.h comm.h handler.h db.h interpreter.h \
  74.   utils.h spells.h
  75.     $(CC) -c $(CFLAGS) reception.c
  76. constants.o : constants.c limits.h structs.h
  77.     $(CC) -c $(CFLAGS) constants.c
  78. board.o : board.c structs.h comm.h
  79.     $(CC) -c $(CFLAGS) board.c
  80. list.o : list.c structs.h
  81.     $(CC) $(CFLAGS) -o list list.c
  82. delplay.o : delplay.c structs.h
  83.     $(CC) $(CFLAGS) -O -o delplay delplay.c
  84. signals.o : signals.c utils.h
  85.     $(CC) -c $(CFLAGS) signals.c
  86. mar_fiz_maz.o : mar_fiz_maz.c structs.h utils.h comm.h interpreter.h \
  87.   handler.h db.h spells.h limits.h
  88.     $(CC) -c $(CFLAGS) mar_fiz_maz.c
  89. dmserver : comm.c act.comm.c act.informative.c act.movement.c act.obj1.c act.obj2.c act.offensive.c act.other.c act.social.c act.wizard.c handler.c db.c interpreter.c utility.c spec_assign.c shop.c limits.c mobact.c fight.c modify.c weather.c spells1.c spells2.c spell_parser.c reception.c constants.c spec_procs.c signals.c board.c mar_fiz_maz.c magic.c
  90.     $(CC) -o dmserver $(CFLAGS) comm.o act.comm.o act.informative.o act.movement.o act.obj1.o act.obj2.o act.offensive.o act.other.o act.social.o act.wizard.o handler.o db.o interpreter.o utility.o spec_assign.o shop.o limits.o mobact.o fight.o modify.o weather.o spells1.o spells2.o spell_parser.o reception.o constants.o spec_procs.o signals.o board.o mar_fiz_maz.o magic.o
  91.