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

  1. CPP = gcc
  2. DEBUG = -g
  3. CFLAGS = $(DEBUG) -I../Include -I/djgpp/contrib/windows/inc -c -DMESSYDOS
  4. ODIR = ../bin
  5. PROGRAM = PrtCards
  6. LFLAGS = $(DEBUG)  -L../Lib -llib -L/djgpp/contrib/windows/lib -lw -lgpp -lpc -lc
  7.  
  8. SRCS = PrtCards.cc
  9.  
  10. OBJS = PrtCards.o
  11.  
  12. $(ODIR)/$(PROGRAM) : $(OBJS) ../Lib/liblib.a
  13.     $(CPP) $(OBJS) $(LFLAGS) -o $(ODIR)/$(PROGRAM) 
  14.  
  15. PrtCards.o : PrtCards.cc PrtCards.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) PrtCards.cc -o PrtCards.o
  20.  
  21. PrtCards.h : PrtCards.arg
  22.     makeargprc PrtCards
  23.