postgresql/contrib/noupdate/Makefile

40 lines
965 B
Makefile
Raw Normal View History

2000-06-15 21:05:22 +02:00
#
# $Header: /cvsroot/pgsql/contrib/noupdate/Attic/Makefile,v 1.6 2000/10/20 21:03:24 petere Exp $
2000-06-15 21:05:22 +02:00
#
subdir = contrib/noupdate
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
2000-06-15 21:05:22 +02:00
NAME := noup
SONAME := $(NAME)$(DLSUFFIX)
2000-06-15 21:05:22 +02:00
override CPPFLAGS += -I$(srcdir)
override CFLAGS += $(CFLAGS_SL)
2000-06-15 21:05:22 +02:00
all: $(SONAME) $(NAME).sql
2000-06-15 21:05:22 +02:00
$(NAME).sql: $(NAME).sql.in
sed -e 's:MODULE_PATHNAME:$(libdir)/contrib/$(SONAME):g' < $< > $@
2000-06-15 21:05:22 +02:00
install: all installdirs
$(INSTALL_SHLIB) $(SONAME) $(libdir)/contrib
$(INSTALL_DATA) $(NAME).sql $(datadir)/contrib
$(INSTALL_DATA) README.$(NAME) $(docdir)/contrib
2000-06-15 21:05:22 +02:00
installdirs:
$(mkinstalldirs) $(libdir)/contrib $(datadir)/contrib $(docdir)/contrib
2000-06-15 21:05:22 +02:00
uninstall:
rm -f $(libdir)/contrib/$(SONAME) $(datadir)/contrib/$(NAME).sql $(docdir)/contrib/README.$(NAME)
2000-06-15 21:05:22 +02:00
clean distclean maintainer-clean:
rm -f $(SONAME) $(NAME).sql
2000-06-15 21:05:22 +02:00
depend dep:
$(CC) -MM -MG $(CFLAGS) *.c > depend
ifeq (depend,$(wildcard depend))
include depend
endif