Fix so the value given to wxTextEntryDialog::SetValue will actually be
[wxWidgets.git] / contrib / samples / gizmos / multicell / makefile.unx
0 / 24 (  0%)
CommitLineData
1# Purpose: makefile for multicell example (Unix)
2# Created 2000-07-28
3
4CXX = $(shell wx-config --cxx)
5
6PROGRAM = mtest
7
8OBJECTS = $(PROGRAM).o ../src/multicell.o
9EXTRAINC=-I../include
10
11# implementation
12
13.SUFFIXES: .o .cpp
14
15.cpp.o :
16 $(CXX) -c `wx-config --cxxflags` -o $@ $<
17
18all: $(PROGRAM)
19
20$(PROGRAM): $(OBJECTS)
21 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
22
23clean:
24 rm -f *.o $(PROGRAM)