# Makefile # # Copyright (C) 2009 Francesco Abbate # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # GSH_BASE_DIR = .. include $(GSH_BASE_DIR)/makeconfig include $(GSH_BASE_DIR)/make-system-detect include $(GSH_BASE_DIR)/makepackages include $(GSH_BASE_DIR)/makedefs ifeq ($(HOST_SYS),Windows) INCLUDES += -I/usr/include -I/usr/pthreads-w32/include PLATSUP_SRC_FILES = support_win32.cpp agg_platform_support_win32.cpp agg_win32_bmp.cpp else ifeq ($(HOST_SYS),Darwin) DEFS += -DDARWIN_MACOSX endif PLATSUP_SRC_FILES = support_x11.cpp agg_platform_support_x11.cpp endif INCLUDES += $(FREETYPE_INCLUDES) $(AGG_INCLUDES) -I$(GSH_BASE_DIR) -I$(GSH_BASE_DIR)/lua-gsl -I$(LUADIR)/src -I$(GSH_BASE_DIR)/cpp-utils LIBS += $(PTHREAD_LIBS) DEFS += $(PTHREAD_DEFS) $(GSL_SHELL_DEFS) CFLAGS += $(LUA_CFLAGS) AGGPLOT_SRC_FILES = $(PLATSUP_SRC_FILES) printf_check.cpp fonts.cpp gamma.cpp agg_font_freetype.cpp plot.cpp plot-auto.cpp utils.cpp units.cpp colors.cpp markers.cpp draw_svg.cpp canvas_svg.cpp lua-draw.cpp lua-text.cpp text.cpp agg-parse-trans.cpp window_registry.cpp window.cpp lua-plot.cpp canvas-window.cpp bitmap-plot.cpp lua-graph.cpp AGGPLOT_OBJ_FILES := $(AGGPLOT_SRC_FILES:%.cpp=%.o) DEP_FILES := $(AGGPLOT_SRC_FILES:%.cpp=.deps/%.P) DEPS_MAGIC := $(shell mkdir .deps> /dev/null 2>&1 || :) TARGETS = libaggplot.a all: $(TARGETS) @$(HOST_CP) libaggplot.a $(GSH_LIBDIR) libaggplot.a: $(AGGPLOT_OBJ_FILES) @echo Archive $@ @$(AR) $@ $? @$(RANLIB) $@ include $(GSH_BASE_DIR)/makerules .PHONY: clean all clean: $(HOST_RM) *.o *.lo *.la *.so *.dll $(TARGETS) -include $(DEP_FILES)