]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/thread/makefile.unx
fix for crash when pressing TAB in the tree text control
[wxWidgets.git] / samples / thread / makefile.unx
index 14a225e23cf53ee4cc17aa1eca2461dc3498169d..43224c12649b7c0f6680db5d3db1604dc8e17d74 100644 (file)
@@ -1,17 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for thread example (UNIX).
+# Purpose: makefile for thread example (Unix)
+# Created: 2000-03-15
 
-PROGRAM=test
+CC = gcc
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = thread
 
-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)