git-svn-id: svn://10.65.10.50/branches/R_10_00@23238 c028cbd2-c16b-5b4b-a496-9718f37d4682
24 lines
386 B
Plaintext
24 lines
386 B
Plaintext
# Purpose: makefile for proplist example (Unix)
|
|
# Created: 2000-03-15
|
|
|
|
CXX = $(shell wx-config --cxx)
|
|
|
|
PROGRAM = proplist
|
|
|
|
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)
|