]> git.saurik.com Git - wxWidgets.git/blame - samples/dragimag/makefile.unx
Restored the accidentally deleted "return true;" at the end of the Show method from...
[wxWidgets.git] / samples / dragimag / makefile.unx
CommitLineData
11e2dfd3
RL
1# Purpose: makefile for dragimag example (Unix)
2# Created: 2000-03-15
68be9f09 3
a6f762a6 4CXX = $(shell wx-config --cxx)
68be9f09 5
11e2dfd3 6PROGRAM = dragimag
68be9f09
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 $@ $<
68be9f09
JS
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
a6f762a6 20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
68be9f09 21
11e2dfd3 22clean:
68be9f09 23 rm -f *.o $(PROGRAM)