home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / dev / src / amilock / makefile < prev    next >
Encoding:
Makefile  |  1993-08-22  |  1.2 KB  |  48 lines

  1. SOURCE  = source/
  2. HEADER  = headers/
  3. BIN      = bin/
  4.  
  5. GHEAD    = $(HEADER)Global.h $(HEADER)deamon.h
  6. GLIB    = $(SOURCE)TalkTo.o $(SOURCE)Error.o
  7.  
  8. all: bin/Deamon bin/Login bin/logout bin/Kill bin/WhoAmI
  9.  
  10. bin/Deamon: $(SOURCE)deamon.o $(GLIB)
  11.     slink with withdeamon
  12.  
  13. bin/Login:  $(SOURCE)login.o $(GLIB) $(SOURCE)inputhandler.o
  14.     slink with withlogin
  15.  
  16. bin/logout: $(SOURCE)logout.o $(GLIB)
  17.     slink with withlogout
  18.  
  19. bin/Kill: $(SOURCE)kill.o $(GLIB)
  20.     slink with withkill
  21.  
  22. bin/WhoAmI: $(SOURCE)WhoAmI.o $(GLIB)
  23.     slink with withwhoami
  24.  
  25. $(SOURCE)inputhandler.o: $(SOURCE)inputhandler.a
  26.     asm $(SOURCE)inputhandler.a
  27.  
  28. $(SOURCE)error.o: $(SOURCE)error.c $(HEADER)error_proto.h
  29.     sc $(SOURCE)error.c
  30.  
  31. $(SOURCE)WhoAmi.o: $(SOURCE)WhoAmI.c
  32.     sc $(SOURCE)WhoAmi.c
  33.  
  34. $(SOURCE)kill.o: $(SOURCE)kill.c $(GHEAD) $(HEADER)deamon_proto.h
  35.     sc $(SOURCE)kill.c
  36.  
  37. $(SOURCE)deamon.o: $(SOURCE)deamon.c $(GHEAD) $(HEADER)deamon_proto.h
  38.     sc $(SOURCE)deamon.c
  39.  
  40. $(SOURCE)logout.o: $(SOURCE)logout.c $(GHEAD) $(HEADER)talkto_proto.h
  41.     sc $(SOURCE)logout.c
  42.  
  43. $(SOURCE)login.o: $(SOURCE)login.c $(GHEAD) $(HEADER)talkto_proto.h $(HEADER)login.h
  44.     sc $(SOURCE)login.c
  45.  
  46. $(SOURCE)talkto.o: $(SOURCE)talkto.c $(HEADER)deamon.h $(GHEAD)
  47.     sc $(SOURCE)talkto.c
  48.