home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 019.lha / Aterm / makefile < prev    next >
Makefile  |  1986-11-10  |  1KB  |  45 lines

  1. #---------------MakeAterm----------------
  2. #
  3. #
  4. #------------------Rules--------------------
  5. #
  6. # make [DEBUG=-DDEBUG] [TLOG=-TLOG] [Aterm] [AtermClock] [Kermit]
  7. #
  8. .c.o:
  9.         cc $(CFLAGS) $(DEBUG) $(TLOG) $*.c
  10.  
  11. #
  12. #------------Aterm Dependencies--------------
  13.  
  14. KERMITOBJ= Kermit.o Wart.o lckfns1.o lckfns2.o lckfns3.o
  15. TLOG=
  16. DEBUG=
  17. ATERMOBJ= Aterm.o ConsoleIO.o SerialIO.o XmodemCRC.o \
  18.           Timer.o FKeys.o Menu.o ClockLoader.o Phone.o
  19.  
  20. Aterm : $(ATERMOBJ) $(KERMITOBJ)
  21.     ln -o ram:Aterm $(ATERMOBJ) $(KERMITOBJ) +s -lc -lm
  22.     copy ram:Aterm df1:
  23.     delete ram:Aterm
  24.     @echo Aterm ready, M'Lord
  25.  
  26. Aterm.o :    ConsoleIO.h SerialIO.h Timer.h
  27. SerialIO.o FKeys.o : ConsoleIO.h
  28. XModemCRC.o :    ConsoleIO.h SerialIO.h Timer.h
  29. Menu.o :    Options.h
  30. ClockLoader.o:    Clock.h ConsoleIO.h
  31. Phone.o:    ConsoleIO.h SerialIO.h
  32.  
  33. Kermit : $(KERMITOBJ)
  34.  
  35. Kermit.o :    lckdeb.h lckerm.h SerialIO.h ConsoleIO.h
  36.  
  37. Wart.o lckfns1.o lckfns2.o lckfns3.o :    lckdeb.h lckerm.h
  38.  
  39. #----------AtermClock Dependencies--------------
  40.  
  41. AtermClock : AtermClock.o
  42.         ln -o ram:AtermClock AtermClock.o -lc -lm
  43.  
  44. AtermClock.o : Clock.h
  45.