home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / treelay / makefile.unx < prev    next >
Makefile  |  2001-11-28  |  384b  |  24 lines

  1. # Purpose: makefile for treelay example (Unix)
  2. # Created: 2000-03-15
  3.  
  4. CXX = $(shell wx-config --cxx)
  5.  
  6. PROGRAM = treelay
  7.  
  8. OBJECTS = $(PROGRAM).o
  9.  
  10. # implementation
  11.  
  12. .SUFFIXES:    .o .cpp
  13.  
  14. .cpp.o :
  15.     $(CXX) -c `wx-config --cxxflags` -o $@ $<
  16.  
  17. all:    $(PROGRAM)
  18.  
  19. $(PROGRAM):    $(OBJECTS)
  20.     $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
  21.  
  22. clean:
  23.     rm -f *.o $(PROGRAM)
  24.