TOPDIR = ../../../.. SUBDIRS = -include $(TOPDIR)/makefiles/gmake/platform.mk INCLUDE_DIRS = \ -I. -I$(TOPDIR)/src \ -I$(TOPDIR)/include/module \ -I$(TOPDIR)/include/util \ -I$(TOPDIR)/include/crawler ifeq ($(WITH_LUA),1) INCLUDE_DIRS += \ -I$(TOPDIR)/include/luaglue \ $(TOLUA_INCLUDES) endif INCLUDE_CXXFLAGS = \ ifeq ($(WITH_LUA),1) INCLUDE_CXXFLAGS += \ -DWITH_LUA endif INCLUDE_LDFLAGS = \ -L$(TOPDIR)/src/libcrawler ifeq ($(WITH_LUA),1) INCLUDE_LDFLAGS += \ $(TOLUA_LDFLAGS) endif INCLUDE_LIBS = \ -lcrawler ifeq ($(WITH_LUA),1) INCLUDE_LIBS += \ -llua \ $(TOLUA_LIBS) endif DYNAMIC_MODULE = \ mod_urlnormalizer_simple.so STATIC_LIB = \ libsimpleurlnormalizer.a CPP_OBJS = \ SimpleURLNormalizer.o ifeq ($(WITH_LUA),1) CPP_OBJS += \ SimpleURLNormalizerLua.o endif -include $(TOPDIR)/makefiles/gmake/sub.mk SimpleURLNormalizerLua.cpp: SimpleURLNormalizer.pkg $(TOLUA) -H SimpleURLNormalizerLua.hpp -o SimpleURLNormalizerLua.cpp SimpleURLNormalizer.pkg local_all: local_clean: ifeq ($(WITH_LUA),1) @-rm SimpleURLNormalizerLua.cpp SimpleURLNormalizerLua.hpp endif local_distclean: local_install: local_uninstall: local_test: