Skip to content

Instantly share code, notes, and snippets.

View LucasMadar's full-sized avatar

Lucas Madar LucasMadar

  • Sam Six
  • Portland, OR
View GitHub Profile
@LucasMadar
LucasMadar / Makefile
Last active December 11, 2015 07:28 — forked from andrewharvey/Makefile
CXX = g++
CXXFLAGS = $(shell mapnik-config --cflags) $(shell Magick++-config --cxxflags --cppflags) -Wall
LDFLAGS = $(shell mapnik-config --libs --dep-libs --ldflags) $(shell Magick++-config --ldflags --libs) -lboost_program_options -lpthread
OBJ = mapnik_osm_metatiles.o
BIN = render_mapnik_osm_metatiles
all : $(BIN)