]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/typetest/makefile.unx
Ran bakefile -f autoconf and autoconf.
[wxWidgets.git] / samples / typetest / makefile.unx
index 44f21e1899e3f71335dadfa0efc54c5fc64d8132..14d6679849e305b4ae67edc0ed467cdbb9451e5d 100644 (file)
@@ -1,17 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for typetest example (UNIX).
+# Purpose: makefile for typetest example (Unix)
+# Created: 2000-03-14
 
-PROGRAM=typetest
+CXX = $(shell wx-config --cxx)
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = typetest
 
-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)