2012-07-10 23:46:00 +02:00
|
|
|
CXX = clang++
|
|
|
|
|
|
|
|
CXXFLAGS = $(shell mapnik-config --cflags)
|
|
|
|
|
|
|
|
LIBS = $(shell mapnik-config --libs --ldflags --dep-libs)
|
|
|
|
|
|
|
|
SRC = $(wildcard *.cpp)
|
|
|
|
|
|
|
|
OBJ = $(SRC:.cpp=.o)
|
|
|
|
|
|
|
|
BIN = hello.input
|
|
|
|
|
|
|
|
all : $(SRC) $(BIN)
|
|
|
|
|
|
|
|
$(BIN) : $(OBJ)
|
|
|
|
$(CXX) -shared $(OBJ) $(LIBS) -o $@
|
|
|
|
|
|
|
|
.cpp.o :
|
|
|
|
$(CXX) -c $(CXXFLAGS) $< -o $@
|
|
|
|
|
|
|
|
.PHONY : clean
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(OBJ)
|
|
|
|
rm -f $(BIN)
|
|
|
|
|
2012-07-10 23:50:43 +02:00
|
|
|
deploy : all
|
2012-07-10 23:46:00 +02:00
|
|
|
cp hello.input $(shell mapnik-config --input-plugins)
|
|
|
|
|
|
|
|
install: clean all deploy
|