moved the definitions of CATREZ, INSTALL, and TMPDIR to <gno/paths.mk>

since so many components depend on them
This commit is contained in:
gdr-ftp 1999-03-19 05:53:33 +00:00
parent a51e90fa81
commit f50f8a7dde
6 changed files with 16 additions and 28 deletions

View File

@ -2,7 +2,7 @@
# Compilation constants for utilities (directories ./bin, ./sbin,
# ./usr.bin, ./usr.sbin). These are not used when building the libraries.
#
# $Id: binconst.mk,v 1.11 1999/01/07 07:28:14 gdr-ftp Exp $
# $Id: binconst.mk,v 1.12 1999/03/19 05:53:31 gdr-ftp Exp $
#
# Devin Reade, 1997.
#
@ -15,17 +15,9 @@ LDLIBS += $(LDADD:s,-l,-l/usr/lib/lib,)
# WARNING: You *must* use descu v1.0.4 or later for these builds.
DESCU = /usr/sbin/descu
COPYFORK = /usr/orca/bin/copyfork
CATREZ = /usr/bin/catrez
INSTALL = /usr/bin/install
MACGEN = 17/macgen
MACGEN_FLAGS += -P
# Temporary directory needed in some weird cases.
.IMPORT .IGNORE: TMPDIR
.IF $(TMPDIR) == $(NULL)
TMPDIR = 14
.END
# $(DESC_SRC) is the created source file for the describe(1) database.
# DESC_DIR = $(RELEASE_DIR)/usr/lib
DESC_DIR = $(SRC_DIR)/gno/doc/describe

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.1 1998/12/22 15:57:32 gdr-ftp Exp $
# $Id: Makefile,v 1.2 1999/03/19 05:53:32 gdr-ftp Exp $
#
.INCLUDE: /src/gno/paths.mk
@ -9,8 +9,6 @@
# which makes our targets very simple.
#
INSTALL = /usr/bin/install
build:
@/bin/true

View File

@ -6,7 +6,7 @@
#
# Devin Reade, 1997
#
# $Id: const.mk,v 1.6 1998/02/09 08:43:58 taubert Exp $
# $Id: const.mk,v 1.7 1999/03/19 05:53:33 gdr-ftp Exp $
#
# It is critical that 13/orcacdefs/defaults.h is set up correctly,
# including #defines for __appleiigs__ and __GNO__. For the purpose
@ -19,8 +19,6 @@ INCLUDES +=
ASFLAGS += -r
CFLAGS += -r -w $(DEFINES) $(INCLUDES)
LDFLAGS +=
INSTALL = /usr/bin/install
CATREZ = /usr/bin/catrez
# Where libraries get installed. Most libraries should go into the
# USRLIBDIR; only "special" libraries belong in LIBDIR

View File

@ -1,5 +1,5 @@
#
# $Id: lib.mk,v 1.7 1998/12/22 16:11:42 gdr-ftp Exp $
# $Id: lib.mk,v 1.8 1999/03/19 05:53:33 gdr-ftp Exp $
#
.INCLUDE: /src/gno/paths.mk
@ -57,10 +57,6 @@ force: $(OBJS)
$(CC) -o $(OBJ_DIR)$*.o $(CFLAGS) -c $<
# Implicit rule to handle Rez source on case sensitive Appleshare servers
.IMPORT .IGNORE: TMPDIR
.IF $(TMPDIR) == $(NULL)
TMPDIR = 14
.END
.IF $(APPLESHARE_CASE_SENSITIVE) != $(NULL)
%.r : %.rez
$(INSTALL) $< $(TMPDIR)/$<

View File

@ -7,7 +7,7 @@
#
# Devin Reade, 1997
#
# $Id: paths.mk,v 1.10 1998/12/22 16:13:41 gdr-ftp Exp $
# $Id: paths.mk,v 1.11 1999/03/19 05:53:31 gdr-ftp Exp $
#
# This one isn't really a path, but it affects the creation of path
@ -73,3 +73,13 @@ ORCA_DIST = /lang/orca
# to avoid backward references during linking.
ORCA_SRC = /src/lib/orcalibs/Source
# Paths to various programs
CATREZ = /usr/bin/catrez
INSTALL = /usr/bin/install
# Temporary directory needed in some weird cases.
.IMPORT .IGNORE: TMPDIR
.IF $(TMPDIR) == $(NULL)
TMPDIR = 14
.END

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.2 1999/02/08 05:53:37 gdr-ftp Exp $
# $Id: Makefile,v 1.3 1999/03/19 05:53:33 gdr-ftp Exp $
#
.INCLUDE: /src/gno/paths.mk
@ -35,12 +35,6 @@ install:
# Implicit rule to handle Rez source on case sensitive Appleshare servers
.IF $(APPLESHARE_CASE_SENSITIVE) != $(NULL)
.IMPORT .IGNORE: TMPDIR
.IF $(TMPDIR) == $(NULL)
TMPDIR = 14
.END
%.r : %.rez
$(INSTALL) $< $(TMPDIR)/$<
$(REZ) -o $@ -c $(REZFLAGS) $(TMPDIR)/$<