]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/splitter/makefile.unx
Initial checkin of the wxFrame support added by Aleks G.
[wxWidgets.git] / samples / splitter / makefile.unx
index 49afaf4cdd67f21c2a8b0e39c28f26765901489f..6d25508915cd8b4314fc1a9e77bd9ee0d352b754 100644 (file)
@@ -1,18 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for splitter example (UNIX).
+# Purpose: makefile for splitter example (Unix)
+# Created: 2000-03-15
 
-PROGRAM=test
+CC = gcc
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = splitter
 
-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)