postgresql/contrib/array/Makefile

39 lines
923 B
Makefile
Raw Normal View History

1997-11-05 22:38:25 +01:00
#
# $Header: /cvsroot/pgsql/contrib/array/Attic/Makefile,v 1.12 2000/07/09 13:12:59 petere Exp $
#
1997-11-05 22:38:25 +01:00
subdir = contrib/array
top_builddir = ../..
include ../../src/Makefile.global
1997-11-05 22:38:25 +01:00
NAME := array_iterator
SONAME := $(NAME)$(DLSUFFIX)
2000-06-15 20:55:34 +02:00
CFLAGS += -I. $(CFLAGS_SL)
1997-11-05 22:38:25 +01:00
all: $(SONAME) $(NAME).sql
$(NAME).sql: $(NAME).sql.in
sed -e 's:MODULE_PATHNAME:$(libdir)/contrib/$(SONAME):g' < $< > $@
1999-09-27 22:04:14 +02:00
install: all installdirs
$(INSTALL_DATA) README.$(NAME) $(docdir)/contrib
$(INSTALL_DATA) $(NAME).sql $(datadir)/contrib
$(INSTALL_SHLIB) $(SONAME) $(libdir)/contrib
installdirs:
$(mkinstalldirs) $(docdir)/contrib $(datadir)/contrib $(libdir)/contrib
1997-11-05 22:38:25 +01:00
uninstall:
rm -rf $(docdir)/contrib/README.$(NAME) $(datadir)/contrib/$(NAME).sql $(libdir)/contrib/$(SONAME)
1997-11-05 22:38:25 +01:00
clean distclean maintainer-clean:
rm -f $(SONAME) $(NAME).sql
1997-11-05 22:38:25 +01:00
depend dep:
2000-06-15 20:55:34 +02:00
$(CC) -MM -MG $(CFLAGS) *.c > depend
1997-11-05 22:38:25 +01:00
ifeq (depend,$(wildcard depend))
include depend
endif