]> git.saurik.com Git - wxWidgets.git/blame - samples/treelay/makefile.unx
Remove unused g295.t; g95.t works with any GCC from 2.95.2 to 3.2.
[wxWidgets.git] / samples / treelay / makefile.unx
CommitLineData
07a9af32
RL
1# Purpose: makefile for treelay example (Unix)
2# Created: 2000-03-15
babc9758 3
a6f762a6 4CXX = $(shell wx-config --cxx)
babc9758 5
07a9af32 6PROGRAM = treelay
babc9758
JS
7
8OBJECTS = $(PROGRAM).o
9
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
a6f762a6 15 $(CXX) -c `wx-config --cxxflags` -o $@ $<
babc9758
JS
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
a6f762a6 20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
babc9758 21
07a9af32 22clean:
babc9758 23 rm -f *.o $(PROGRAM)