home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / io / makefile.emx < prev    next >
Makefile  |  1995-04-04  |  437b  |  38 lines

  1.  
  2. include ../control/emxmak.ctl
  3.  
  4.  
  5. LIBRARY = $(YACLLIB)/$(IO).a
  6.  
  7. OBJECTS =  binfile.o bytstore.o dskbtree.o slotfile.o 
  8.  
  9. .SUFFIXES:
  10. .SUFFIXES: .cxx .o
  11.  
  12. all: $(LIBRARY)
  13.     $(AR) s $(LIBRARY)
  14.  
  15.  
  16. $(LIBRARY): $(OBJECTS)
  17.  
  18.  
  19. all: $(LIBRARY) 
  20.  
  21.  
  22. $(LIBRARY): $(OBJECTS)
  23.  
  24.  
  25. .SUFFIXES:
  26.  
  27. .SUFFIXES: .cxx .o
  28.  
  29.  
  30. .cxx.o:
  31.     $(CC) $(CCOPTS)  $*.cxx
  32.     $(AR) r $(LIBRARY) $*.o
  33.         
  34.  
  35.  
  36. clean:
  37.     -rm -f *.o  $(LIBRARY) $(MEMLIB)
  38.