]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/notebook/makefile.unx
made one button label multiline for testing
[wxWidgets.git] / samples / notebook / makefile.unx
index a3f76189b2d076565d9955bde1dbab62d02bbd1d..c137b06024b561924904ea70860c0e61a810c29e 100644 (file)
@@ -1,17 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for notebook example (UNIX).
+# Purpose: makefile for notebook example (Unix)
+# Created: 2000-03-15
 
-PROGRAM=test
+CXX = $(shell wx-config --cxx)
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = notebook
 
-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)