]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/treectrl/makefile.unx
fix for crash when pressing TAB in the tree text control
[wxWidgets.git] / samples / treectrl / makefile.unx
index aa0c92a4ad1080393e51d7951cf66c274d06fc26..71b7088089368da371704c9f3709a46190df6d23 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
+CC = gcc
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = treectrl
 
-include ../../src/makeprog.env
+OBJECTS = $(PROGRAM).o
 
+# implementation
+
+.SUFFIXES:     .o .cpp
+
+.cpp.o :
+       $(CC) -c `wx-config --cflags` -o $@ $<
+
+all:    $(PROGRAM)
+
+$(PROGRAM):    $(OBJECTS)
+       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+
+clean:
+       rm -f *.o $(PROGRAM)