mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
091126fa28
the src/include tree, so that -I backend is no longer necessary anywhere. Also, clean up some bit rot in contrib tree.
19 lines
383 B
Makefile
19 lines
383 B
Makefile
#
|
|
# PostgreSQL types for ISBN and ISSN identifiers.
|
|
#
|
|
# $Id: Makefile,v 1.2 2000/05/29 05:44:26 tgl Exp $
|
|
|
|
SRCDIR= ../../src
|
|
|
|
include $(SRCDIR)/Makefile.global
|
|
|
|
CFLAGS+= $(CFLAGS_SL)
|
|
|
|
all: isbn$(DLSUFFIX) issn$(DLSUFFIX)
|
|
|
|
install: isbn$(DLSUFFIX) issn$(DLSUFFIX)
|
|
install -c isbn$(DLSUFFIX) issn$(DLSUFFIX) /usr/local/pgsql/modules
|
|
|
|
clean:
|
|
rm -f isbn$(DLSUFFIX) issn$(DLSUFFIX) *.o
|