1997-02-28 05:12:58 +00:00
|
|
|
#
|
1997-09-05 06:50:30 +00:00
|
|
|
# gno/lib/libc/Makefile
|
|
|
|
#
|
1997-02-28 05:12:58 +00:00
|
|
|
# This is the top-level makefile for libc, GNO v2.0.6
|
|
|
|
#
|
|
|
|
# dmake is too bloated right now to due recursive makes well, so before
|
|
|
|
# you run make in this directory, ensure you run make in the following
|
|
|
|
# directories:
|
1997-09-21 16:28:30 +00:00
|
|
|
# gen, gno, locale, stdio, stdlib, stdtime, string, sys
|
1997-02-28 05:12:58 +00:00
|
|
|
#
|
1997-09-05 06:50:30 +00:00
|
|
|
# Devin Reade, 1997.
|
|
|
|
#
|
1998-02-08 03:47:40 +00:00
|
|
|
# $Id: Makefile,v 1.7 1998/02/08 03:47:22 gdr-ftp Exp $
|
1997-02-28 05:12:58 +00:00
|
|
|
#
|
|
|
|
|
1998-02-08 03:47:40 +00:00
|
|
|
LIB = c
|
|
|
|
|
1997-09-05 06:50:30 +00:00
|
|
|
.INCLUDE: ../../paths.mk
|
|
|
|
.INCLUDE: ../const.mk
|
1997-02-28 05:12:58 +00:00
|
|
|
|
1998-02-08 03:47:40 +00:00
|
|
|
USE_SLASH_LIB = true # This library goes into /lib.
|
|
|
|
|
1997-09-21 16:28:30 +00:00
|
|
|
ORCALIB_OBJ = \
|
|
|
|
$(ORCA_SRC)/orcalib/obj/assert.a
|
1997-02-28 05:12:58 +00:00
|
|
|
|
1998-02-08 03:47:40 +00:00
|
|
|
libc: $(ORCALIB_OBJ)
|
|
|
|
$(MAKELIB) $(MAKELIBFLAGS) -l $@ $^
|
|
|
|
|
|
|
|
$(ORCALIB_OBJ):; true
|
|
|
|
|
|
|
|
.INCLUDE: ../librelease.mk
|
|
|
|
|
|
|
|
$(LIBTARGET):: lib$(LIB).r
|
|
|
|
$(CATREZ) -d $@ lib$(LIB).r
|
1997-10-03 04:42:51 +00:00
|
|
|
|