CCOPT = `wx-config --cxxflags`
LDOPT = `wx-config --libs`

PROGLIST = simple

all: $(PROGLIST)

simple: simple.cc
	g++ $(CCOPT) $(LDOPT) $< -o $@

clean:
	rm -f $(PROGLIST)

