]> granicus.if.org Git - postgresql/blobdiff - src/include/Makefile
Change the declaration of struct varlena so that the length word is
[postgresql] / src / include / Makefile
index 81afc850d37e07a901beae978a24ae5adbd07dc5..e21dc57641623dfaf20d24dc98b68eced7e2be38 100644 (file)
@@ -2,54 +2,65 @@
 #
 # Makefile for src/include
 #
-# Install exported headers to the include directory (these headers are
-# the minimal ones needed to build loadable backend extensions).
+# 'make install' installs whole contents of src/include.
 #
-# $Header: /cvsroot/pgsql/src/include/Makefile,v 1.2 2000/07/19 16:29:58 petere Exp $
+# $PostgreSQL: pgsql/src/include/Makefile,v 1.23 2007/10/14 17:07:51 tgl Exp $
 #
 #-------------------------------------------------------------------------
 
 subdir = src/include
 top_builddir = ../..
-include ../Makefile.global
+include $(top_builddir)/src/Makefile.global
 
 
-HEADERS := os.h config.h c.h postgres.h postgres_ext.h fmgr.h \
-       libpq/pqcomm.h libpq/libpq-fs.h lib/dllist.h \
-       utils/geo_decls.h utils/elog.h utils/fmgroids.h utils/palloc.h \
-       access/attnum.h executor/spi.h commands/trigger.h
+all: pg_config.h pg_config_os.h
 
 
-all: $(HEADERS)
-
-
-# These rules are necessary in case someone installs the include tree
-# before building the backend tree. Very messy.
-utils/fmgroids.h: $(top_builddir)/src/backend/utils/fmgroids.h
-       cd utils && rm -f fmgroids.h && $(LN_S) ../$(top_builddir)/src/backend/utils/fmgroids.h .
-
-# This file is built in the backend tree, but we need to keep track of
-# the dependencies here.
-$(top_builddir)/src/backend/utils/fmgroids.h: $(top_srcdir)/src/backend/utils/Gen_fmgrtab.sh catalog/pg_proc.h
-       $(MAKE) -C $(dir $@) fmgroids.h
-
+# Subdirectories containing headers for server-side dev
+SUBDIRS = access bootstrap catalog commands executor lib libpq mb \
+       nodes optimizer parser postmaster regex rewrite storage tcop \
+       snowball snowball/libstemmer tsearch tsearch/dicts utils \
+       port port/win32 port/win32_msvc port/win32_msvc/sys \
+       port/win32/arpa port/win32/netinet port/win32/sys
 
+# Install all headers
 install: all installdirs
-       @for i in $(HEADERS); do \
-         echo "$(INSTALL_DATA) $(srcdir)/$$i $(includedir)/$$i"; \
-         $(INSTALL_DATA) $(srcdir)/$$i $(includedir)/$$i; \
+# These headers are needed by the public headers of the interfaces.
+       $(INSTALL_DATA) $(srcdir)/postgres_ext.h   '$(DESTDIR)$(includedir)'
+       $(INSTALL_DATA) $(srcdir)/libpq/libpq-fs.h '$(DESTDIR)$(includedir)/libpq'
+       $(INSTALL_DATA) pg_config.h    '$(DESTDIR)$(includedir)'
+       $(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir)'
+       $(INSTALL_DATA) $(srcdir)/pg_config_manual.h '$(DESTDIR)$(includedir)'
+# These headers are needed by the not-so-public headers of the interfaces.
+       $(INSTALL_DATA) $(srcdir)/c.h            '$(DESTDIR)$(includedir_internal)'
+       $(INSTALL_DATA) $(srcdir)/port.h         '$(DESTDIR)$(includedir_internal)'
+       $(INSTALL_DATA) $(srcdir)/postgres_fe.h  '$(DESTDIR)$(includedir_internal)'
+       $(INSTALL_DATA) $(srcdir)/libpq/pqcomm.h '$(DESTDIR)$(includedir_internal)/libpq'
+# These headers are needed for server-side development
+       $(INSTALL_DATA) pg_config.h    '$(DESTDIR)$(includedir_server)'
+       $(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir_server)'
+# We don't use INSTALL_DATA for performance reasons --- there are a lot of files
+       cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \
+       chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h  || exit; \
+       for dir in $(SUBDIRS); do \
+         cp $(srcdir)/$$dir/*.h '$(DESTDIR)$(includedir_server)'/$$dir/ || exit; \
+         chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$dir/*.h  || exit; \
        done
 
-# Automatically pick out the needed subdirectories for the include
-# tree.
 installdirs:
-       $(mkinstalldirs) $(addprefix $(includedir)/, $(sort $(dir $(HEADERS))))
+       $(mkinstalldirs) '$(DESTDIR)$(includedir)/libpq' '$(DESTDIR)$(includedir_internal)/libpq'
+       $(mkinstalldirs) $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS))
+
 
 uninstall:
-       rm -f $(addprefix $(includedir)/, $(HEADERS))
+       rm -f $(addprefix '$(DESTDIR)$(includedir)'/, pg_config.h pg_config_os.h pg_config_manual.h postgres_ext.h libpq/libpq-fs.h)
+       rm -f $(addprefix '$(DESTDIR)$(includedir_internal)'/, c.h port.h postgres_fe.h libpq/pqcomm.h)
+# heuristic...
+       rm -rf $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS) *.h)
+
 
 clean:
        rm -f utils/fmgroids.h parser/parse.h
 
 distclean maintainer-clean: clean
-       rm -f config.h dynloader.h os.h stamp-h
+       rm -f pg_config.h dynloader.h pg_config_os.h stamp-h