home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pccts1.zip / SUPPORT / REXPR / MAKEFILE next >
Text File  |  1993-09-01  |  229b  |  14 lines

  1. BAG=/home/garage2/pccts/bin/bag
  2. SRC=test.c rexpr.c
  3. OBJ=test.o rexpr.o
  4. CFLAGS = -g
  5.  
  6. test: $(OBJ) $(SRC)
  7.     cc -g -o test $(OBJ)
  8.  
  9. shar:
  10.     shar makefile test.c rexpr.c > rexpr.shar
  11.  
  12. archive:
  13.     $(BAG) makefile test.c rexpr.c > rexpr.bag
  14.