home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / contrib / src / gizmos / makefile.unx < prev    next >
Makefile  |  2001-08-22  |  518b  |  35 lines

  1. #
  2. # File:        makefile.unx
  3. # Author:    Julian Smart
  4. # Created:    1998
  5. # Updated:    
  6. # Copyright:    (c) 1998
  7. #
  8. #
  9. # Makefile for Gizmos library, Unix
  10.  
  11. include ../../src/make.env
  12.  
  13. GIZMOSLIB=$(WXDIR)/lib/libgizmos$(GUISUFFIX).a
  14.  
  15. LIB_CPP_SRC=\
  16. \
  17.   multicell.o\
  18.   editlbox.o\
  19.   splittree.o\
  20.   dynamicsash.o
  21.  
  22. all:    $(GIZMOSLIB)
  23.  
  24. # Define library objects
  25. OBJECTS=\
  26.  $(LIB_CPP_SRC:.cpp=.o)
  27.  
  28. $(GIZMOSLIB) : $(OBJECTS)
  29.     ar $(AROPTIONS) $@ $(OBJECTS)
  30.     $(RANLIB) $@
  31.  
  32. clean:
  33.     rm -f $(OBJECTS) $(GIZMOSLIB)
  34.  
  35.