]> git.saurik.com Git - wxWidgets.git/blame - samples/tab/makefile.unx
changed PPC struct alignement setting
[wxWidgets.git] / samples / tab / makefile.unx
CommitLineData
8fef0a6e
RL
1# Purpose: makefile for tab example (Unix)
2# Created: 2000-03-15
a4294b78 3
a6f762a6 4CXX = $(shell wx-config --cxx)
a4294b78 5
8fef0a6e 6PROGRAM = tab
a4294b78 7
8fef0a6e 8OBJECTS = $(PROGRAM).o
a4294b78 9
8fef0a6e
RL
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
a6f762a6 15 $(CXX) -c `wx-config --cxxflags` -o $@ $<
8fef0a6e
RL
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
a6f762a6 20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
8fef0a6e
RL
21
22clean:
23 rm -f *.o $(PROGRAM)