wxWidgets/samples/event/makefile.unx

24 lines
357 B
Plaintext
Raw Normal View History

# Purpose: makefile for event example (Unix)
# Created: 2001-01-31
CXX = $(shell wx-config --cxx)
PROGRAM = event
OBJECTS = $(PROGRAM).o
# implementation
.SUFFIXES: .o .cpp
.cpp.o :
$(CXX) -c `wx-config --cxxflags` -o $@ $<
all: $(PROGRAM)
$(PROGRAM): $(OBJECTS)
$(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
clean:
rm -f *.o $(PROGRAM)