mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-17 16:30:33 +00:00
moved the definitions of CATREZ, INSTALL, and TMPDIR to <gno/paths.mk>
since so many components depend on them
This commit is contained in:
parent
a51e90fa81
commit
f50f8a7dde
10
binconst.mk
10
binconst.mk
@ -2,7 +2,7 @@
|
|||||||
# Compilation constants for utilities (directories ./bin, ./sbin,
|
# Compilation constants for utilities (directories ./bin, ./sbin,
|
||||||
# ./usr.bin, ./usr.sbin). These are not used when building the libraries.
|
# ./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.
|
# 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.
|
# WARNING: You *must* use descu v1.0.4 or later for these builds.
|
||||||
DESCU = /usr/sbin/descu
|
DESCU = /usr/sbin/descu
|
||||||
COPYFORK = /usr/orca/bin/copyfork
|
COPYFORK = /usr/orca/bin/copyfork
|
||||||
CATREZ = /usr/bin/catrez
|
|
||||||
INSTALL = /usr/bin/install
|
|
||||||
MACGEN = 17/macgen
|
MACGEN = 17/macgen
|
||||||
MACGEN_FLAGS += -P
|
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_SRC) is the created source file for the describe(1) database.
|
||||||
# DESC_DIR = $(RELEASE_DIR)/usr/lib
|
# DESC_DIR = $(RELEASE_DIR)/usr/lib
|
||||||
DESC_DIR = $(SRC_DIR)/gno/doc/describe
|
DESC_DIR = $(SRC_DIR)/gno/doc/describe
|
||||||
|
@ -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
|
.INCLUDE: /src/gno/paths.mk
|
||||||
@ -9,8 +9,6 @@
|
|||||||
# which makes our targets very simple.
|
# which makes our targets very simple.
|
||||||
#
|
#
|
||||||
|
|
||||||
INSTALL = /usr/bin/install
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@/bin/true
|
@/bin/true
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
# Devin Reade, 1997
|
# 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,
|
# It is critical that 13/orcacdefs/defaults.h is set up correctly,
|
||||||
# including #defines for __appleiigs__ and __GNO__. For the purpose
|
# including #defines for __appleiigs__ and __GNO__. For the purpose
|
||||||
@ -19,8 +19,6 @@ INCLUDES +=
|
|||||||
ASFLAGS += -r
|
ASFLAGS += -r
|
||||||
CFLAGS += -r -w $(DEFINES) $(INCLUDES)
|
CFLAGS += -r -w $(DEFINES) $(INCLUDES)
|
||||||
LDFLAGS +=
|
LDFLAGS +=
|
||||||
INSTALL = /usr/bin/install
|
|
||||||
CATREZ = /usr/bin/catrez
|
|
||||||
|
|
||||||
# Where libraries get installed. Most libraries should go into the
|
# Where libraries get installed. Most libraries should go into the
|
||||||
# USRLIBDIR; only "special" libraries belong in LIBDIR
|
# USRLIBDIR; only "special" libraries belong in LIBDIR
|
||||||
|
@ -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
|
.INCLUDE: /src/gno/paths.mk
|
||||||
@ -57,10 +57,6 @@ force: $(OBJS)
|
|||||||
$(CC) -o $(OBJ_DIR)$*.o $(CFLAGS) -c $<
|
$(CC) -o $(OBJ_DIR)$*.o $(CFLAGS) -c $<
|
||||||
|
|
||||||
# Implicit rule to handle Rez source on case sensitive Appleshare servers
|
# 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)
|
.IF $(APPLESHARE_CASE_SENSITIVE) != $(NULL)
|
||||||
%.r : %.rez
|
%.r : %.rez
|
||||||
$(INSTALL) $< $(TMPDIR)/$<
|
$(INSTALL) $< $(TMPDIR)/$<
|
||||||
|
12
paths.mk
12
paths.mk
@ -7,7 +7,7 @@
|
|||||||
#
|
#
|
||||||
# Devin Reade, 1997
|
# 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
|
# 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.
|
# to avoid backward references during linking.
|
||||||
|
|
||||||
ORCA_SRC = /src/lib/orcalibs/Source
|
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
|
||||||
|
@ -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
|
.INCLUDE: /src/gno/paths.mk
|
||||||
@ -35,12 +35,6 @@ install:
|
|||||||
|
|
||||||
# Implicit rule to handle Rez source on case sensitive Appleshare servers
|
# Implicit rule to handle Rez source on case sensitive Appleshare servers
|
||||||
.IF $(APPLESHARE_CASE_SENSITIVE) != $(NULL)
|
.IF $(APPLESHARE_CASE_SENSITIVE) != $(NULL)
|
||||||
|
|
||||||
.IMPORT .IGNORE: TMPDIR
|
|
||||||
.IF $(TMPDIR) == $(NULL)
|
|
||||||
TMPDIR = 14
|
|
||||||
.END
|
|
||||||
|
|
||||||
%.r : %.rez
|
%.r : %.rez
|
||||||
$(INSTALL) $< $(TMPDIR)/$<
|
$(INSTALL) $< $(TMPDIR)/$<
|
||||||
$(REZ) -o $@ -c $(REZFLAGS) $(TMPDIR)/$<
|
$(REZ) -o $@ -c $(REZFLAGS) $(TMPDIR)/$<
|
||||||
|
Loading…
x
Reference in New Issue
Block a user