]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/sashtest/makefile.unx
updated to use the new raw bitmap API
[wxWidgets.git] / samples / sashtest / makefile.unx
index 1b3cff37d52f34893bc64a7db4bdb2ecd3ba087d..8697a6362a73b429c8b5c95d5a3bdbab957377f0 100644 (file)
@@ -1,17 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for sashtest example (UNIX).
+# Purpose: makefile for sashtest example (Unix)
+# Created: 2000-03-14
 
-PROGRAM=sashtest
+CXX = $(shell wx-config --cxx)
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = sashtest
 
-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)