mirror of
https://github.com/postgres/postgres.git
synced 2025-06-05 00:02:04 -04:00
Indent comments in makefiles better so they don't appear in the output.
This commit is contained in:
parent
53a11befc8
commit
fe733968ea
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# PostgreSQL documentation makefile
|
# PostgreSQL documentation makefile
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.86 2006/12/15 16:50:07 momjian Exp $
|
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.87 2007/01/07 08:49:31 petere Exp $
|
||||||
#
|
#
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -153,7 +153,7 @@ JADE.tex.call = $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) $(CATALOG) -d $(srcdir)/styl
|
|||||||
|
|
||||||
%.dvi: %.tex-ps
|
%.dvi: %.tex-ps
|
||||||
@rm -f $*.aux $*.log
|
@rm -f $*.aux $*.log
|
||||||
# multiple runs are necessary to create proper intra-document links
|
# multiple runs are necessary to create proper intra-document links
|
||||||
jadetex $<
|
jadetex $<
|
||||||
jadetex $<
|
jadetex $<
|
||||||
jadetex $<
|
jadetex $<
|
||||||
@ -164,7 +164,7 @@ JADE.tex.call = $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) $(CATALOG) -d $(srcdir)/styl
|
|||||||
|
|
||||||
%.pdf: %.tex-pdf
|
%.pdf: %.tex-pdf
|
||||||
@rm -f $*.aux $*.log $*.out
|
@rm -f $*.aux $*.log $*.out
|
||||||
# multiple runs are necessary to create proper intra-document links
|
# multiple runs are necessary to create proper intra-document links
|
||||||
pdfjadetex $<
|
pdfjadetex $<
|
||||||
pdfjadetex $<
|
pdfjadetex $<
|
||||||
pdfjadetex $<
|
pdfjadetex $<
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# Copyright (c) 1998, Regents of the University of California
|
# Copyright (c) 1998, Regents of the University of California
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.105 2006/09/19 15:36:07 tgl Exp $
|
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.106 2007/01/07 08:49:31 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -193,7 +193,8 @@ ifeq ($(PORTNAME), solaris)
|
|||||||
ifeq ($(GCC), yes)
|
ifeq ($(GCC), yes)
|
||||||
LINK.shared = $(CC) -shared
|
LINK.shared = $(CC) -shared
|
||||||
else
|
else
|
||||||
LINK.shared = $(CC) -G $(CFLAGS) # CFLAGS added for X86_64
|
# CFLAGS added for X86_64
|
||||||
|
LINK.shared = $(CC) -G $(CFLAGS)
|
||||||
endif
|
endif
|
||||||
ifeq ($(with_gnu_ld), yes)
|
ifeq ($(with_gnu_ld), yes)
|
||||||
LINK.shared += -Wl,-soname,$(soname)
|
LINK.shared += -Wl,-soname,$(soname)
|
||||||
@ -354,7 +355,8 @@ endif
|
|||||||
|
|
||||||
ifeq ($(enable_shared), yes)
|
ifeq ($(enable_shared), yes)
|
||||||
install-lib-shared: $(shlib)
|
install-lib-shared: $(shlib)
|
||||||
ifneq ($(PORTNAME), aix) # we don't install $(shlib) on AIX
|
# we don't install $(shlib) on AIX
|
||||||
|
ifneq ($(PORTNAME), aix)
|
||||||
$(INSTALL_SHLIB) $< '$(DESTDIR)$(libdir)/$(shlib)'
|
$(INSTALL_SHLIB) $< '$(DESTDIR)$(libdir)/$(shlib)'
|
||||||
ifneq ($(PORTNAME), cygwin)
|
ifneq ($(PORTNAME), cygwin)
|
||||||
ifneq ($(PORTNAME), win32)
|
ifneq ($(PORTNAME), win32)
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
# be converted to Method 2.
|
# be converted to Method 2.
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $PostgreSQL: pgsql/src/backend/port/Makefile,v 1.23 2006/04/28 17:09:16 momjian Exp $
|
# $PostgreSQL: pgsql/src/backend/port/Makefile,v 1.24 2007/01/07 08:49:31 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ win32.dir:
|
|||||||
|
|
||||||
tas.o: tas.s
|
tas.o: tas.s
|
||||||
ifeq ($(PORTNAME), solaris)
|
ifeq ($(PORTNAME), solaris)
|
||||||
# preprocess assembler file with cpp, used by x86
|
# preprocess assembler file with cpp, used by x86
|
||||||
$(CC) $(CFLAGS) -c -P $<
|
$(CC) $(CFLAGS) -c -P $<
|
||||||
mv $*.i $*_cpp.s
|
mv $*.i $*_cpp.s
|
||||||
$(CC) $(CFLAGS) -c $*_cpp.s -o $@
|
$(CC) $(CFLAGS) -c $*_cpp.s -o $@
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||||
# Portions Copyright (c) 1994, Regents of the University of California
|
# Portions Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.153 2007/01/05 22:20:00 momjian Exp $
|
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.154 2007/01/07 08:49:31 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -170,7 +170,8 @@ uninstall: uninstall-lib
|
|||||||
|
|
||||||
clean distclean: clean-lib
|
clean distclean: clean-lib
|
||||||
rm -f $(OBJS) pg_config_paths.h crypt.c getaddrinfo.c inet_aton.c noblock.c open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c md5.c ip.c encnames.c wchar.c pthread.h exports.list
|
rm -f $(OBJS) pg_config_paths.h crypt.c getaddrinfo.c inet_aton.c noblock.c open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c md5.c ip.c encnames.c wchar.c pthread.h exports.list
|
||||||
rm -f pg_config_paths.h # Might be left over from a Win32 client-only build
|
# Might be left over from a Win32 client-only build
|
||||||
|
rm -f pg_config_paths.h
|
||||||
|
|
||||||
maintainer-clean: distclean
|
maintainer-clean: distclean
|
||||||
rm -f $(srcdir)/libpqdll.def $(srcdir)/libpqddll.def $(srcdir)/blibpqdll.def $(srcdir)/libpq.rc
|
rm -f $(srcdir)/libpqdll.def $(srcdir)/libpqddll.def $(srcdir)/blibpqdll.def $(srcdir)/libpq.rc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user