home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / hl10osrc.zoo / Librarian / makefile < prev    next >
Makefile  |  2009-11-06  |  722b  |  24 lines

  1. CPP = gcc2 -Fcc2pluss200 #200 -Fcccp2s200
  2. CFLAGS = -I../Include -gg -c
  3. ODIR = ../CMDS
  4. PROGRAM = Librarian
  5. LFLAGS = -gg -l../Lib/libr.l -lgpp000 -liostream000 -lgcc  -ltermlib.l -s 30 -v
  6.  
  7. SRCS = Librarian.cc
  8.  
  9. OBJS = Librarian.r
  10.  
  11. $(ODIR)/$(PROGRAM) : $(OBJS) ../Lib/libr.l
  12.     $(CPP) $(LFLAGS) $(OBJS) -o $(ODIR)/$(PROGRAM) 
  13.  
  14. Librarian.r : Librarian.cc Librarian.h ../Include/common.h \
  15.         ../Include/vm.h ../Include/vBTree.h \
  16.         ../Include/ListRecord.h ../Include/CardRecord.h \
  17.         ../Include/Card.h ../Include/Terminal.h \
  18.         ../Include/CommandScreen.h ../Include/ScrollPrompt.h \
  19.         ../Include/LLScrollPrompt.h ../Include/LList.h
  20.         $(CPP) $(CFLAGS) Librarian.cc -o Librarian.r
  21.  
  22. Librarian.h : Librarian.arg
  23.     makeargprc Librarian
  24.