home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / io / makefile.wtc < prev    next >
Makefile  |  1994-10-14  |  560b  |  55 lines

  1.  
  2. !include ../watmak.ctl
  3.  
  4. LIBRARY = $(BASE)
  5.  
  6. # ------------------------ Names of files --------------------------
  7.  
  8.  
  9.  
  10. OBJECTS =  binfile.obj bytstore.obj dskbtree.obj slotfile.obj 
  11.  
  12.  
  13.  
  14.  
  15.  
  16. # ---------------------- Compilation rules -----------------------
  17.  
  18.  
  19. .SUFFIXES:
  20. .SUFFIXES: .cxx .obj
  21.  
  22.  
  23.  
  24. CCOPTS    = $(CCOPTS) -Jgd
  25.  
  26. .cxx.obj:
  27.     wpp386 /i=.. /i=$(WTCPATH)\h $*.cxx
  28.     
  29.  
  30.         
  31. all: $(LIBRARY)
  32.  
  33.  
  34.  
  35. $(LIBRARY): $(OBJECTS)
  36.     rm -f $(LIBRARY).bak
  37.  
  38.  
  39.  
  40. # ------------------ Other targets ---------------------------
  41.  
  42.  
  43.  
  44.  
  45. clean:
  46.     -rm -f *.obj  *.bak *.lib
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.