]> git.saurik.com Git - wxWidgets.git/blame - samples/joytest/makefile.unx
Regenerate the msvc makefiles after TARGET_CPU option added
[wxWidgets.git] / samples / joytest / makefile.unx
CommitLineData
367e57ec
RL
1# Purpose: makefile for joytest example (Unix)
2# Created: 2000-03-14
bbf1f0e5 3
a6f762a6 4CXX = $(shell wx-config --cxx)
bbf1f0e5 5
367e57ec 6PROGRAM = joytest
bbf1f0e5 7
367e57ec 8OBJECTS = $(PROGRAM).o
bbf1f0e5 9
367e57ec
RL
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
a6f762a6 15 $(CXX) -c `wx-config --cxxflags` -o $@ $<
367e57ec
RL
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
a6f762a6 20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
367e57ec
RL
21
22clean:
23 rm -f *.o $(PROGRAM)