]> granicus.if.org Git - postgresql/blob - src/include/Makefile
Reindent table partitioning code.
[postgresql] / src / include / Makefile
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
11 subdir = src/include
12 top_builddir = ../..
13 include $(top_builddir)/src/Makefile.global
14
15
16 all: pg_config.h pg_config_ext.h pg_config_os.h
17
18
19 # Subdirectories containing installable headers
20 SUBDIRS = 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
29 install: 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         $(INSTALL_DATA) utils/fmgrprotos.h '$(DESTDIR)$(includedir_server)/utils'
49 # We don't use INSTALL_DATA for performance reasons --- there are a lot of files
50         cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \
51         chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h  || exit; \
52         for dir in $(SUBDIRS); do \
53           cp $(srcdir)/$$dir/*.h '$(DESTDIR)$(includedir_server)'/$$dir/ || exit; \
54           chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$dir/*.h  || exit; \
55         done
56 ifeq ($(vpath_build),yes)
57         for file in dynloader.h catalog/schemapg.h parser/gram.h storage/lwlocknames.h utils/probes.h; do \
58           cp $$file '$(DESTDIR)$(includedir_server)'/$$file || exit; \
59           chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$file || exit; \
60         done
61 endif
62
63 installdirs:
64         $(MKDIR_P) '$(DESTDIR)$(includedir)/libpq' '$(DESTDIR)$(includedir_internal)/libpq'
65         $(MKDIR_P) $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS))
66
67
68 uninstall:
69         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)
70         rm -f $(addprefix '$(DESTDIR)$(includedir_internal)'/, c.h port.h postgres_fe.h libpq/pqcomm.h)
71 # heuristic...
72         rm -rf $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS) *.h)
73
74
75 clean:
76         rm -f utils/fmgroids.h utils/fmgrprotos.h utils/errcodes.h parser/gram.h utils/probes.h catalog/schemapg.h
77
78 distclean maintainer-clean: clean
79         rm -f pg_config.h pg_config_ext.h pg_config_os.h dynloader.h stamp-h stamp-ext-h