]> git.saurik.com Git - wxWidgets.git/blame - samples/thread/makefile.unx
don't use unneeded logBuf member variable; show the changed cell value in OnCellValue...
[wxWidgets.git] / samples / thread / makefile.unx
CommitLineData
c4f02b1f
RL
1# Purpose: makefile for thread example (Unix)
2# Created: 2000-03-15
1e8d2f69 3
a6f762a6 4CXX = $(shell wx-config --cxx)
1e8d2f69
RR
5
6PROGRAM = thread
7
8OBJECTS = $(PROGRAM).o
9
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
a6f762a6 15 $(CXX) -c `wx-config --cxxflags` -o $@ $<
1e8d2f69
RR
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
a6f762a6 20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
1e8d2f69 21
c4f02b1f 22clean:
1e8d2f69 23 rm -f *.o $(PROGRAM)