Skip to content
Snippets Groups Projects
Select Git revision
  • 1b12c3e836676e8e94ba94e15c25b100ce0debf0
  • master default
  • benchmark-tools
  • postgres-lambda
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
24 results

Makefile

Blame
  • user avatar
    Robert Haas authored
    Kevin Grittner, reviewed (in earlier versions) by Álvaro Herrera
    6e3323d4
    History
    Makefile 1.16 KiB
    # contrib/Makefile
    
    subdir = contrib
    top_builddir = ..
    include $(top_builddir)/src/Makefile.global
    
    SUBDIRS = \
    		adminpack	\
    		auth_delay	\
    		auto_explain	\
    		btree_gin	\
    		btree_gist	\
    		chkpass		\
    		citext		\
    		cube		\
    		dblink		\
    		dict_int	\
    		dict_xsyn	\
    		dummy_seclabel	\
    		earthdistance	\
    		file_fdw	\
    		fuzzystrmatch	\
    		hstore		\
    		intagg		\
    		intarray	\
    		isn		\
    		lo		\
    		ltree		\
    		oid2name	\
    		pageinspect	\
    		passwordcheck	\
    		pg_archivecleanup \
    		pg_buffercache	\
    		pg_freespacemap \
    		pg_standby	\
    		pg_stat_statements \
    		pg_test_fsync	\
    		pg_trgm		\
    		pg_upgrade	\
    		pg_upgrade_support \
    		pgbench		\
    		pgcrypto	\
    		pgrowlocks	\
    		pgstattuple	\
    		seg		\
    		spi		\
    		tablefunc	\
    		tcn		\
    		test_parser	\
    		tsearch2	\
    		unaccent	\
    		vacuumlo
    
    ifeq ($(with_openssl),yes)
    SUBDIRS += sslinfo
    else
    ALWAYS_SUBDIRS += sslinfo
    endif
    
    ifeq ($(with_ossp_uuid),yes)
    SUBDIRS += uuid-ossp
    else
    ALWAYS_SUBDIRS += uuid-ossp
    endif
    
    ifeq ($(with_libxml),yes)
    SUBDIRS += xml2
    else
    ALWAYS_SUBDIRS += xml2
    endif
    
    ifeq ($(with_selinux),yes)
    SUBDIRS += sepgsql
    else
    ALWAYS_SUBDIRS += sepgsql
    endif
    
    # Missing:
    #		start-scripts	\ (does not have a makefile)
    
    
    $(recurse)
    $(recurse_always)