aboutsummaryrefslogtreecommitdiff
path: root/contrib/chkpass/Makefile
blob: a84a6a67119fbbfdbbc9c18211abdc19dd61168c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# $Header: /cvsroot/pgsql/contrib/chkpass/Makefile,v 1.1 2001/05/03 12:32:13 darcy Exp $
#

subdir = contrib/chkpass
top_builddir = ../..
include $(top_builddir)/src/Makefile.global

NAME	:= chkpass
SONAME	:= $(NAME)$(DLSUFFIX)

SQLS	= $(NAME).sql
MODS	= $(NAME)$(DLSUFFIX)

override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
override CFLAGS += $(CFLAGS_SL)

ifdef REFINT_VERBOSE
override CPPFLAGS+= -DREFINT_VERBOSE
endif

all: $(SONAME) $(NAME).sql

$(NAME).sql: $(NAME).sql.in
	sed -e 's:MODULE_PATHNAME:$(libdir)/contrib/$(SONAME):g' < $< > $@

install: all installdirs
	$(INSTALL_SHLIB) $(SONAME)	$(libdir)/contrib
	$(INSTALL_DATA) README.$(NAME)	$(docdir)/contrib
	sed "s+%%PGDIR%%+$(libdir)+g" < chkpass.sql > $(datadir)/contrib

installdirs:
	$(mkinstalldirs) $(libdir)/contrib $(docdir)/contrib $(datadir)/contrib

uninstall:
	rm -f $(libdir)/contrib/$(SONAME) $(docdir)/contrib/README.$(NAME) \
	  $(addprefix $(datadir)/contrib/, $(NAME).sql)

clean distclean maintainer-clean:
	rm -f $(SONAME) $(NAME).sql

depend dep:
	$(CC) -MM -MG $(CFLAGS) *.c > depend

ifeq (depend,$(wildcard depend))
include depend
endif