]> git.saurik.com Git - wxWidgets.git/blame - samples/statbar/makefile.unx
gravity for splitter window (patch 1046105)
[wxWidgets.git] / samples / statbar / makefile.unx
CommitLineData
2286341c
VZ
1# Purpose: makefile for statbar example (Unix)
2# Created: 2000-02-04
3
a6f762a6 4CXX = $(shell wx-config --cxx)
2286341c
VZ
5
6PROGRAM = statbar
7
8OBJECTS = $(PROGRAM).o
9
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
a6f762a6 15 $(CXX) -c `wx-config --cxxflags` -o $@ $<
2286341c
VZ
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
a6f762a6 20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
2286341c
VZ
21
22clean:
23 rm -f *.o $(PROGRAM)