home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 339.lha / SerMod / source / makefile < prev    next >
Makefile  |  1990-02-08  |  511b  |  31 lines

  1. #---------------MakeDCCS----------------
  2. #
  3. #
  4. #------------------Rules--------------------
  5. #
  6. # make [DEBUG=-DDEBUG] [TLOG=-TLOG] [DCCS]
  7. #
  8. .c.o:
  9.         cc $(CFLAGS) $(DEBUG) $(TLOG) $*.c
  10.  
  11. #
  12. #------------DCCS Dependencies--------------
  13.  
  14. TLOG=
  15. DEBUG=
  16. CFLAGS=-n
  17. # -n in CGFLAGS for debug
  18.  
  19. SEROBJ= sermod.o SerialIO.o RexxGlue.o wb_parse.o cli_parse.o
  20.  
  21. SERSRC= sermod.c SerialIO.c
  22.  
  23. # -g in ln line for debug
  24.  
  25. serial : $(SEROBJ)
  26.     ln -g -o sermod $(SEROBJ) -lc -lm
  27.     @echo sermod ready, M'Lord
  28.  
  29. sermod.o :    SerialIO.h defs.h
  30.  
  31.