]> granicus.if.org Git - postgresql/blob - src/include/Makefile
e21dc57641623dfaf20d24dc98b68eced7e2be38
[postgresql] / src / include / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile for src/include
4 #
5 # 'make install' installs whole contents of src/include.
6 #
7 # $PostgreSQL: pgsql/src/include/Makefile,v 1.23 2007/10/14 17:07:51 tgl Exp $
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_os.h
17
18
19 # Subdirectories containing headers for server-side dev
20 SUBDIRS = access bootstrap catalog commands executor lib libpq mb \
21         nodes optimizer parser postmaster regex rewrite storage tcop \
22         snowball snowball/libstemmer tsearch tsearch/dicts utils \
23         port port/win32 port/win32_msvc port/win32_msvc/sys \
24         port/win32/arpa port/win32/netinet port/win32/sys
25
26 # Install all headers
27 install: all installdirs
28 # These headers are needed by the public headers of the interfaces.
29         $(INSTALL_DATA) $(srcdir)/postgres_ext.h   '$(DESTDIR)$(includedir)'
30         $(INSTALL_DATA) $(srcdir)/libpq/libpq-fs.h '$(DESTDIR)$(includedir)/libpq'
31         $(INSTALL_DATA) pg_config.h    '$(DESTDIR)$(includedir)'
32         $(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir)'
33         $(INSTALL_DATA) $(srcdir)/pg_config_manual.h '$(DESTDIR)$(includedir)'
34 # These headers are needed by the not-so-public headers of the interfaces.
35         $(INSTALL_DATA) $(srcdir)/c.h            '$(DESTDIR)$(includedir_internal)'
36         $(INSTALL_DATA) $(srcdir)/port.h         '$(DESTDIR)$(includedir_internal)'
37         $(INSTALL_DATA) $(srcdir)/postgres_fe.h  '$(DESTDIR)$(includedir_internal)'
38         $(INSTALL_DATA) $(srcdir)/libpq/pqcomm.h '$(DESTDIR)$(includedir_internal)/libpq'
39 # These headers are needed for server-side development
40         $(INSTALL_DATA) pg_config.h    '$(DESTDIR)$(includedir_server)'
41         $(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir_server)'
42 # We don't use INSTALL_DATA for performance reasons --- there are a lot of files
43         cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \
44         chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h  || exit; \
45         for dir in $(SUBDIRS); do \
46           cp $(srcdir)/$$dir/*.h '$(DESTDIR)$(includedir_server)'/$$dir/ || exit; \
47           chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$dir/*.h  || exit; \
48         done
49
50 installdirs:
51         $(mkinstalldirs) '$(DESTDIR)$(includedir)/libpq' '$(DESTDIR)$(includedir_internal)/libpq'
52         $(mkinstalldirs) $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS))
53
54
55 uninstall:
56         rm -f $(addprefix '$(DESTDIR)$(includedir)'/, pg_config.h pg_config_os.h pg_config_manual.h postgres_ext.h libpq/libpq-fs.h)
57         rm -f $(addprefix '$(DESTDIR)$(includedir_internal)'/, c.h port.h postgres_fe.h libpq/pqcomm.h)
58 # heuristic...
59         rm -rf $(addprefix '$(DESTDIR)$(includedir_server)'/, $(SUBDIRS) *.h)
60
61
62 clean:
63         rm -f utils/fmgroids.h parser/parse.h
64
65 distclean maintainer-clean: clean
66         rm -f pg_config.h dynloader.h pg_config_os.h stamp-h