]> git.saurik.com Git - wxWidgets.git/blame_incremental - samples/sashtest/makefile.unx
wxGTK2: No need to check for __WXGTK20__ here either (and test cia script again)
[wxWidgets.git] / samples / sashtest / makefile.unx
... / ...
CommitLineData
1# Purpose: makefile for sashtest example (Unix)
2# Created: 2000-03-14
3
4CXX = $(shell wx-config --cxx)
5
6PROGRAM = sashtest
7
8OBJECTS = $(PROGRAM).o
9
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
15 $(CXX) -c `wx-config --cxxflags` -o $@ $<
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
21
22clean:
23 rm -f *.o $(PROGRAM)