]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/thread/makefile.unx
ODBC library is part of base, so make sure the dependency is set accordingly.
[wxWidgets.git] / samples / thread / makefile.unx
index 14a225e23cf53ee4cc17aa1eca2461dc3498169d..2604c437aee5e23bd9906624c1d24f8b1f43b1c8 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
+CXX = $(shell wx-config --cxx)
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = thread
 
-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)