home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / io / makefile.gcc < prev    next >
Makefile  |  1995-03-29  |  432b  |  37 lines

  1.  
  2. include ../control/gccmak.ctl
  3.  
  4. LIBRARY = $(YACLLIB)/libio.a
  5.  
  6.  
  7. # ------------------------ Names of files --------------------------
  8.  
  9.  
  10. OBJECTS =    \
  11. binfile.o     \
  12. bytstore.o \
  13. dskbtree.o \
  14. slotfile.o
  15.  
  16.  
  17.  
  18.  
  19.  
  20. .SUFFIXES:
  21. .SUFFIXES: .cxx .o
  22.  
  23. all: $(LIBRARY)
  24.     ranlib $(LIBRARY)
  25.  
  26. $(LIBRARY): $(OBJECTS)
  27.  
  28.  
  29. .cxx.o:
  30.     $(CC) $(CCOPTS) $*.cxx
  31.     ar r $(LIBRARY) $*.o
  32.         
  33.  
  34.  
  35. clean:
  36.     -rm -f *.o  *.bak *.lib
  37.