]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/treectrl/makefile.unx
Removed CF_NOSIMULATIONS flag to increase range of available fonts
[wxWidgets.git] / samples / treectrl / makefile.unx
index aa0c92a4ad1080393e51d7951cf66c274d06fc26..5c422e1c8fa2227684c19a5385b31a0a8edf6bde 100644 (file)
@@ -1,17 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for treectrl example (UNIX).
+# Purpose: makefile for treectrl example (Unix)
+# Created: 2000-03-15
 
-PROGRAM=treetest
+CXX = $(shell wx-config --cxx)
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = treetest
 
-include ../../src/makeprog.env
+OBJECTS = $(PROGRAM).o
 
+# implementation
+
+.SUFFIXES:     .o .cpp
+
+.cpp.o :
+       $(CXX) -c `wx-config --cxxflags` -o $@ $<
+
+all:    $(PROGRAM)
+
+$(PROGRAM):    $(OBJECTS)
+       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+
+clean:
+       rm -f *.o $(PROGRAM)