mirror of
https://github.com/postgres/postgres.git
synced 2025-12-02 23:42:46 +03:00
configuration files that can be altered by a DBA. The australian_timezones GUC setting disappears, replaced by a timezone_abbreviations setting (set this to 'Australia' to get the effect of australian_timezones). The list of zone names defined by default has undergone a bit of cleanup, too. Documentation still needs some work --- in particular, should we fix Table B-4, or just get rid of it? Joachim Wieland, with some editorializing by moi.
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for utils/misc
|
|
#
|
|
# IDENTIFICATION
|
|
# $PostgreSQL: pgsql/src/backend/utils/misc/Makefile,v 1.26 2006/07/25 03:51:21 tgl Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/utils/misc
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
|
|
|
|
OBJS = guc.o help_config.o pg_rusage.o ps_status.o superuser.o tzparser.o
|
|
|
|
# This location might depend on the installation directories. Therefore
|
|
# we can't subsitute it into pg_config.h.
|
|
ifdef krb_srvtab
|
|
override CPPFLAGS += -DPG_KRB_SRVTAB='"$(krb_srvtab)"'
|
|
endif
|
|
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
|
|
|
|
# guc-file is compiled as part of guc
|
|
guc.o: $(srcdir)/guc-file.c
|
|
|
|
$(srcdir)/guc-file.c: guc-file.l
|
|
ifdef FLEX
|
|
$(FLEX) $(FLEXFLAGS) -o'$@' $<
|
|
else
|
|
@$(missing) flex $< $@
|
|
endif
|
|
|
|
# Note: guc-file.c is not deleted by 'make clean',
|
|
# since we want to ship it in distribution tarballs.
|
|
clean:
|
|
rm -f SUBSYS.o $(OBJS)
|
|
@rm -f lex.yy.c
|
|
|
|
depend dep:
|
|
$(CC) -MM $(CFLAGS) *.c >depend
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
include depend
|
|
endif
|