From: Adam Dickmeiss Date: Tue, 7 May 2013 11:29:47 +0000 (+0200) Subject: Update example module to use metaproxy-config X-Git-Tag: v1.3.56~19 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=5a0f6c23f56d1df24e8ce09408bb68a0c2526b94;hp=74403430257e9f719f17e2966c4c6e85f7f05526;p=metaproxy-moved-to-github.git Update example module to use metaproxy-config rather than yazpp-config. --- diff --git a/example-module/Makefile b/example-module/Makefile index 63810a2..a352aed 100644 --- a/example-module/Makefile +++ b/example-module/Makefile @@ -1,10 +1,12 @@ -CONFIG=../../yazpp/yazpp-config +CONFIG=../metaproxy-config SO=metaproxy_filter_myfilter.so all: $(SO) $(SO): filter_myfilter.cpp - $(CXX) -shared `$(CONFIG) --cflags` -fPIC -I ../src $< -o $(SO) ../src/.libs/libmetaproxy.so -ldl + echo $(LIBS) + $(CXX) -shared `$(CONFIG) --cflags` -fPIC -I ../src $< \ + -o $(SO) `$(CONFIG) --libs` clean: rm -f *.so