1 # Purpose: makefile for richedit example (Unix)
3 # hand hacked from template file by Ron <ron@debian.org>
5 CXX = $(shell wx-config --cxx)
9 OBJECTS = $(PROGRAM).o kbList.o wxllist.o wxlparser.o wxlwindow.o
16 $(CXX) -c `wx-config --cxxflags` -o $@ $<
18 $(PROGRAM): $(OBJECTS)
19 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`