From d1a6ec76784172d0f65359891833b1e4b2d6131e Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Fri, 20 Aug 2004 09:46:17 +0000 Subject: cleaned Makefile.am (I'm curious about the NULL= idiom; where did it come from ?) --- php/Makefile.am | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'php') diff --git a/php/Makefile.am b/php/Makefile.am index 5938b586..42b89216 100644 --- a/php/Makefile.am +++ b/php/Makefile.am @@ -10,8 +10,7 @@ INCLUDES = \ -I$(top_srcdir)/lasso \ $(LASSO_DEFINES) \ $(LASSO_CFLAGS) \ - $(PHP_INCLUDES) \ - $(NULL) + $(PHP_INCLUDES) mylibs = $(top_builddir)/lasso/liblasso.la @@ -21,15 +20,11 @@ LASSOSOURCES = \ lasso.h \ php_lasso.h -lib_LTLIBRARIES = lasso.la \ - $(NULL) +lib_LTLIBRARIES = lasso.la prefix=@PHP_PREFIX@ libdir=@PHP_EXTENSION_DIR@ lasso_la_SOURCES = $(LASSOSOURCES) -lasso_la_LIBADD = $(mylibs) \ - $(LASSO_LIBS) \ - ./environs/libenvirons.a \ - ./xml/libxml.a \ - $(NULL) +lasso_la_LIBADD = $(mylibs) $(LASSO_LIBS) ./environs/libenvirons.a ./xml/libxml.a + -- cgit