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.msdos < prev    next >
Makefile  |  1994-04-23  |  623b  |  24 lines

  1. CPP = gcc
  2. DEBUG = -g
  3. CFLAGS = $(DEBUG) -I../Include -I/djgpp/contrib/windows/inc -c -DMESSYDOS
  4. ODIR = ../bin
  5. PROGRAM = PrtLabls
  6. LFLAGS = $(DEBUG)  -L../Lib -llib -L/djgpp/contrib/windows/lib -lw -lgpp -lpc -lc
  7.  
  8. SRCS = PrtLabls.cc
  9.  
  10. OBJS = PrtLabls.o
  11.  
  12. $(ODIR)/$(PROGRAM) : $(OBJS) ../Lib/liblib.a
  13.     $(CPP) $(OBJS) $(LFLAGS) -o $(ODIR)/$(PROGRAM) 
  14.  
  15. PrtLabls.o : PrtLabls.cc PrtLabls.h ../Include/common.h \
  16.         ../Include/vm.h ../Include/vBTree.h \
  17.         ../Include/Card.h ../Include/CardRec.h \
  18.         ../Include/ListRec.h ../Include/PTree.h
  19.         $(CPP) $(CFLAGS) PrtLabls.cc -o PrtLabls.o
  20.  
  21. PrtLabls.h : PrtLabls.arg
  22.     makeargprc PrtLabls
  23.  
  24.