]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/minifram/makefile.unx
Added fl (frame layout) to wxWindows, from source tidied by Hans Van Leemputten ...
[wxWidgets.git] / samples / minifram / makefile.unx
index 0b249d4c88a1fb3e2c1d69e22b5929087cac66f9..1dc2872c4da3bb3c2f5f410a6a2a38119414ba44 100644 (file)
@@ -1,18 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for toolbar example (UNIX).
+# Purpose: makefile for minifram example (Unix)
+# Created: 2000-03-15
 
-PROGRAM=test
+CC = gcc
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = minifram
 
-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)