]> granicus.if.org Git - postgresql/commitdiff
Don't mention TIOGA in Makefile and move strdup.c rule into proper
authorBruce Momjian <bruce@momjian.us>
Mon, 18 Feb 2002 06:03:23 +0000 (06:03 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 18 Feb 2002 06:03:23 +0000 (06:03 +0000)
'ifdef' in Makefile.

src/backend/Makefile
src/backend/port/Makefile.in

index 0bc9f02eeb78ebfa65773091615ac20a29aba989..876d14a2dc48800d5f2100391d4bcfd7ce28fe68 100644 (file)
@@ -4,7 +4,7 @@
 #
 # Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.75 2001/11/20 00:27:13 tgl Exp $
+# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.76 2002/02/18 06:03:22 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -16,10 +16,6 @@ DIRS := access bootstrap catalog parser commands executor lib libpq \
        main nodes optimizer port postmaster regex rewrite \
        storage tcop utils
 
-ifdef TIOGA
-DIRS += tioga
-endif
-
 OBJS := $(DIRS:%=%/SUBSYS.o)
 
 ifeq ($(PORTNAME), qnx4)
index fdc1008743a15bfb56c99741058a6eabc5c1b091..6f99a28d4adf888dce229c588022eca3c0fc65e2 100644 (file)
@@ -13,7 +13,7 @@
 # be converted to Method 2.  
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.30 2001/12/20 21:23:05 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.31 2002/02/18 06:03:23 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -26,6 +26,8 @@ OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @MEMCMP@ @STRCASECMP@ @TAS@ @ISINF@
 OBJS+= @STRTOL@ @STRTOUL@ @SNPRINTF@
 ifdef STRDUP
 OBJS += $(top_builddir)/src/utils/strdup.o
+$(top_builddir)/src/utils/strdup.o:
+       $(MAKE) -C $(top_builddir)/src/utils strdup.o
 endif
 ifeq ($(PORTNAME), qnx4)
 OBJS += getrusage.o qnx4/SUBSYS.o
@@ -60,10 +62,6 @@ darwin.dir:
 tas.o: tas.s
        $(CC) $(CFLAGS) -c $<
 
-$(top_builddir)/src/utils/strdup.o:
-       $(MAKE) -C $(top_builddir)/src/utils strdup.o
-
-
 distclean clean:
        rm -f SUBSYS.o $(OBJS)
        $(MAKE) -C beos clean