1997-02-28 05:03:34 +00:00
|
|
|
#
|
1997-09-21 06:01:12 +00:00
|
|
|
# gno/lib/const.mk
|
|
|
|
#
|
1997-02-28 05:03:34 +00:00
|
|
|
# Compile-time configuration for the GNO libraries. This file is only
|
|
|
|
# required for building the libraries, not for using them.
|
|
|
|
#
|
|
|
|
# Devin Reade, 1997
|
|
|
|
#
|
1998-02-09 08:45:21 +00:00
|
|
|
# $Id: const.mk,v 1.6 1998/02/09 08:43:58 taubert Exp $
|
1997-02-28 05:03:34 +00:00
|
|
|
#
|
|
|
|
# It is critical that 13/orcacdefs/defaults.h is set up correctly,
|
|
|
|
# including #defines for __appleiigs__ and __GNO__. For the purpose
|
|
|
|
# of compiling these libraries, 13/orcacdefs should probably be otherwise
|
|
|
|
# empty.
|
|
|
|
#
|
|
|
|
|
1997-10-03 04:39:58 +00:00
|
|
|
DEFINES +=
|
1997-12-21 20:04:19 +00:00
|
|
|
INCLUDES +=
|
1998-02-09 08:45:21 +00:00
|
|
|
ASFLAGS += -r
|
1997-10-03 04:39:58 +00:00
|
|
|
CFLAGS += -r -w $(DEFINES) $(INCLUDES)
|
|
|
|
LDFLAGS +=
|
|
|
|
INSTALL = /usr/bin/install
|
|
|
|
CATREZ = /usr/bin/catrez
|
1997-02-28 05:03:34 +00:00
|
|
|
|
1998-02-08 03:47:40 +00:00
|
|
|
# Where libraries get installed. Most libraries should go into the
|
|
|
|
# USRLIBDIR; only "special" libraries belong in LIBDIR
|
|
|
|
LIBDIR = /lib
|
|
|
|
USRLIBDIR = /usr/lib
|
|
|
|
RELLIB = $(RELEASE_DIR)$(LIBDIR)
|
|
|
|
RELUSRLIB = $(RELEASE_DIR)$(USRLIBDIR)
|
|
|
|
|
1997-02-28 05:03:34 +00:00
|
|
|
# Byteworks' makelib pukes ... these object files are too much for it.
|
|
|
|
MAKELIB = 17/makelib.apw
|
|
|
|
MAKELIBFLAGS = -w -r -p
|
1998-02-08 03:47:40 +00:00
|
|
|
|
1998-02-09 08:45:21 +00:00
|
|
|
# This is the name of the library we're building.
|
|
|
|
LIBPFX *= $(OBJ_DIR)
|
|
|
|
LIBTARGET = $(LIBPFX)lib$(LIB)
|