projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
cleaned up the waitpid() result processing mess
[wxWidgets.git]
/
samples
/
tab
/
makefile.unx
diff --git
a/samples/tab/makefile.unx
b/samples/tab/makefile.unx
index 1c66f71f22bc9563887450d3043b6f18aa630924..c496a336b3a2d032cfc08e36c00ff20f37ee0cda 100644
(file)
--- a/
samples/tab/makefile.unx
+++ b/
samples/tab/makefile.unx
@@
-1,17
+1,23
@@
-#
-# File: makefile.unx
-# Author: Julian Smart
-# Created: 1998
-# Updated:
-# Copyright: (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for tab example (UNIX).
+# Purpose: makefile for tab example (Unix)
+# Created: 2000-03-15
-PROGRAM=test
+CC = gcc
-OBJECTS=$(PROGRAM).o
+PROGRAM = tab
-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)