1#-------------------------------------------------------------------------
2#
3# Makefile for src/include
4#
5# 'make install' installs whole contents of src/include.
6#
7# src/include/Makefile
8#
9#-------------------------------------------------------------------------
10
11subdir = src/include
12top_builddir = ../..
13include $(top_builddir)/src/Makefile.global
14
15
16all: pg_config.h pg_config_ext.h pg_config_os.h
17
18
19# Subdirectories containing installable headers
20SUBDIRS = access bootstrap catalog commands common datatype \
21	executor fe_utils foreign \
22	lib libpq mb nodes optimizer parser postmaster regex replication \
23	rewrite storage tcop snowball snowball/libstemmer tsearch \
24	tsearch/dicts utils port port/atomics port/win32 port/win32_msvc \
25	port/win32_msvc/sys port/win32/arpa port/win32/netinet \
26	port/win32/sys portability
27
28# Install all headers
29install: all installdirs
30# These headers are needed by the public headers of the interfaces.
31	$(INSTALL_DATA) $(srcdir)/postgres_ext.h   '$(DESTDIR)$(includedir)'
32	$(INSTALL_DATA) $(srcdir)/libpq/libpq-fs.h '$(DESTDIR)$(includedir)/libpq'
33	$(INSTALL_DATA) pg_config.h     '$(DESTDIR)$(includedir)'
34	$(INSTALL_DATA) pg_config_ext.h '$(DESTDIR)$(includedir)'
35	$(INSTALL_DATA) pg_config_os.h  '$(DESTDIR)$(includedir)'
36	$(INSTALL_DATA) $(srcdir)/pg_config_manual.h '$(DESTDIR)$(includedir)'
37# These headers are needed by the not-so-public headers of the interfaces.
38	$(INSTALL_DATA) $(srcdir)/c.h            '$(DESTDIR)$(includedir_internal)'
39	$(INSTALL_DATA) $(srcdir)/port.h         '$(DESTDIR)$(includedir_internal)'
40	$(INSTALL_DATA) $(srcdir)/postgres_fe.h  '$(DESTDIR)$(includedir_internal)'
41	$(INSTALL_DATA) $(srcdir)/libpq/pqcomm.h '$(DESTDIR)$(includedir_internal)/libpq'
42# These headers are needed for server-side development
43	$(INSTALL_DATA) pg_config.h     '$(DESTDIR)$(includedir_server)'
44	$(INSTALL_DATA) pg_config_ext.h '$(DESTDIR)$(includedir_server)'
45	$(INSTALL_DATA) pg_config_os.h  '$(DESTDIR)$(includedir_server)'
46	$(INSTALL_DATA) utils/errcodes.h '$(DESTDIR)$(includedir_server)/utils'
47	$(INSTALL_DATA) utils/fmgroids.h '$(DESTDIR)$(includedir_server)/utils'
48# We don't use INSTALL_DATA for performance reasons --- there are a lot of files
49	cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \
50	chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h  || exit; \
51	for dir in $(SUBDIRS); do \
52	  cp $(srcdir)/$$dir/*.h '$(DESTDIR)$(includedir_server)'/$$dir/ || exit; \
53	  chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$dir/*.h  || exit; \
54	done
55ifeq ($(vpath_build),yes)
56	for file in dynloader.h catalog/schemapg.h parser/gram.h storage/lwlocknames.h utils/probes.h; do \
57	  cp $$file '$(DESTDIR)$(includedir_server)'/$$file || exit; \
58	  chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$file || exit; \
59	done
60endif
61
62installdirs:
63	$(MKDIR_P) '$(DESTDIR)$(includedir)/libpq' '$(DESTDIR)$(includedir_internal)/libpq'
64	$(MKDIR_P) $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS))
65
66
67uninstall:
68	rm -f $(addprefix '$(DESTDIR)$(includedir)'/, pg_config.h pg_config_ext.h pg_config_os.h pg_config_manual.h postgres_ext.h libpq/libpq-fs.h)
69	rm -f $(addprefix '$(DESTDIR)$(includedir_internal)'/, c.h port.h postgres_fe.h libpq/pqcomm.h)
70# heuristic...
71	rm -rf $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS) *.h)
72
73
74clean:
75	rm -f utils/fmgroids.h utils/errcodes.h parser/gram.h utils/probes.h catalog/schemapg.h
76
77distclean maintainer-clean: clean
78	rm -f pg_config.h pg_config_ext.h pg_config_os.h dynloader.h stamp-h stamp-ext-h
79