wxWidgets/samples/splitter/makefile.unx

24 lines
363 B
Plaintext
Raw Normal View History

# Purpose: makefile for splitter example (Unix)
# Created: 2000-03-15
CXX = $(shell wx-config --cxx)
PROGRAM = splitter
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)