home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / hl10osrc.lzh / PrintLabels / makefile next >
Makefile  |  1994-04-23  |  633b  |  23 lines

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