]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/grid/makefile.unx
fix for wxExecute(subprocess which produces a lot of output) bug
[wxWidgets.git] / samples / grid / makefile.unx
index 069b823b1a39075cd9a3f34ae85543ec26ae17e3..a80a6ec93e24c8fee339d7e8924f99b77ad8b357 100644 (file)
@@ -1,17 +1,23 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for grid example (UNIX).
+# Purpose: makefile for grid example (Unix)
+# Created: 2000-03-15
 
-PROGRAM=test
+CC = gcc
 
-OBJECTS=$(PROGRAM).o
+PROGRAM = grid
 
-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)