home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / hl10osrc.lzh / EditLibr / makefile < prev    next >
Makefile  |  1994-04-23  |  2KB  |  51 lines

  1. CPP = gcc2 -Fcc2pluss300 #200 -Fcccp2s300
  2. CFLAGS = -I../Include -gg -c
  3. ODIR = ../CMDS
  4. PROGRAM = EditLibr
  5. LFLAGS = -gg -l../Lib/libr.l -lgpp000 -liostream000 -lgcc  -ltermlib.l -s 30 -v
  6. HEADERS = EditDefs.h EditGLob.h
  7.  
  8. SRCS = EditLibr.cc EditCard.cc ListStuff.cc DeleteStuff.cc
  9.  
  10. OBJS = EditLibr.r  EditCard.r  ListStuff.r  DeleteStuff.r
  11.  
  12. $(ODIR)/$(PROGRAM) : $(OBJS) ../Lib/libr.l
  13.     $(CPP) $(LFLAGS) $(OBJS) -o $(ODIR)/$(PROGRAM) 
  14.  
  15. EditLibr.r : EditLibr.cc EditLibr.h ../Include/common.h \
  16.         ../Include/vm.h ../Include/vBTree.h \
  17.         ../Include/ListRecord.h ../Include/CardRecord.h \
  18.         ../Include/Card.h ../Include/Terminal.h \
  19.         ../Include/CommandScreen.h $(HEADERS)
  20.         $(CPP) $(CFLAGS) EditLibr.cc -o EditLibr.r
  21.  
  22. EditCard.r : EditCard.cc ../Include/common.h \
  23.         ../Include/vm.h ../Include/vBTree.h \
  24.         ../Include/ListRecord.h ../Include/CardRecord.h \
  25.         ../Include/Card.h ../Include/Terminal.h \
  26.         ../Include/CommandScreen.h ../Include/EditForm.h \
  27.         $(HEADERS)
  28.         $(CPP) $(CFLAGS) EditCard.cc -o EditCard.r
  29.  
  30. ListStuff.r : ListStuff.cc ../Include/common.h \
  31.         ../Include/vm.h ../Include/vBTree.h \
  32.         ../Include/ListRecord.h ../Include/CardRecord.h \
  33.         ../Include/Card.h ../Include/Terminal.h \
  34.         ../Include/CommandScreen.h ../Include/EditForm.h \
  35.         ../Include/LLScrollPrompt.h ../Include/LList.h \
  36.         $(HEADERS)
  37.         $(CPP) $(CFLAGS) ListStuff.cc -o ListStuff.r
  38.  
  39. DeleteStuff.r : DeleteStuff.cc ../Include/common.h \
  40.         ../Include/vm.h ../Include/vBTree.h \
  41.         ../Include/ListRecord.h ../Include/CardRecord.h \
  42.         ../Include/Card.h ../Include/Terminal.h \
  43.         ../Include/CommandScreen.h ../Include/ScrollPrompt.h \
  44.         $(HEADERS)
  45.         $(CPP) $(CFLAGS) DeleteStuff.cc -o DeleteStuff.r
  46.  
  47. EditLibr.h : EditLibr.arg
  48.     makeargprc EditLibr
  49.  
  50.  
  51.