home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / base / makefile.wtc < prev    next >
Makefile  |  1994-12-07  |  830b  |  41 lines

  1.  
  2. !include ../watmak.ctl
  3.  
  4. LIBRARY = $(BASE)
  5.  
  6. # ------------------------ Names of files --------------------------
  7.  
  8.  
  9. OBJ1 = basicops.obj bitset.obj bytarray.obj bytestrm.obj bytstrng.obj
  10. OBJ2 = clntset.obj date.obj error.obj gbtree.obj genseq.obj integer.obj
  11. OBJ3 = intseq.obj intset.obj iofilter.obj map.obj object.obj objseq.obj
  12. OBJ4 = objset.obj sequence.obj stream.obj strgseq.obj strgset.obj string.obj
  13. OBJ5 = strsplit.obj tbtree.obj timeofda.obj tree.obj treewalk.obj
  14.  
  15.  
  16. all: $(OBJ1) $(OBJ2) $(OBJ3) $(OBJ4) $(OBJ5)
  17.  
  18. # ---------------------- Compilation rules -----------------------
  19.  
  20. .cxx.obj:
  21.     wpp386  /i=..  /bt=windows $*.cxx
  22.     wlib $(YACLLIB)\$(LIBRARY) -+$*.obj
  23.         
  24.  
  25.  
  26. # ------------------ Other targets ---------------------------
  27.  
  28.  
  29.  
  30.  
  31. clean:
  32.     -rm -f *.obj  *.bak *.lib
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.