From a756449fcb70566a5c2f03c84844c92324633e1d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 25 Feb 2002 04:16:58 +0000 Subject: [PATCH] Try to make makefile actually work ... --- contrib/intagg/Makefile | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/contrib/intagg/Makefile b/contrib/intagg/Makefile index ae15d5a359..18b5012bc9 100644 --- a/contrib/intagg/Makefile +++ b/contrib/intagg/Makefile @@ -2,30 +2,14 @@ # Makefile for integer aggregator # Copyright (C) 2001 Digital Music Network. # by Mark L. Woodward -# +# $Header$ + subdir = contrib/intagg top_builddir = ../.. include $(top_builddir)/src/Makefile.global -NAME=int_aggregate -SONAME = $(NAME)$(DLSUFFIX) MODULES = int_aggregate -DATA_built = int_aggregate.so +DATA_built = int_aggregate.sql DOCS = README.int_aggregate -SQLS=int_aggregate.sql include $(top_srcdir)/contrib/contrib-global.mk - -%.sql: %.sql.in - sed 's,MODULE_FILENAME,$$libdir/$(NAME),g' $< >$@ - -all : $(SONAME) $(SQLS) - - -install : all - $(INSTALL_SHLIB) $(SONAME) $(DESTDIR)$(pkglibdir) - - -clean : - rm -f $(SONAME) - rm -f $(SQLS) -- 2.39.5