gno/lib/libc/Makefile
gdr-ftp 3c8936e8bc Makefile:
- eliminate double concatenation of resource fork
	- specify files via SRCS vice OBJS
	- obtain the assert object file from where it is built in
	  the ORCA hierarchy
libc.rez:
	- add build date to displayed data
1998-02-19 01:00:36 +00:00

32 lines
809 B
Makefile

#
# gno/lib/libc/Makefile
#
# 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:
# gen, gno, locale, stdio, stdlib, stdtime, string, sys
#
# Before 'make' is run in this directory, you must also build ORCALib,
# since we steal some of our object files from that hierarchy.
#
# Devin Reade, 1997.
#
# $Id: Makefile,v 1.9 1998/02/19 01:00:34 gdr-ftp Exp $
#
LIB = c
# This actually resides in the ORCALib source tree
SRCS = assert.asm
# This library goes into /lib.
USE_SLASH_LIB= true
.INCLUDE: /src/gno/lib/lib.mk
# Use cp(1) rather than install(1) here so that we get a newer timestamp.
assert.o: $(ORCA_SRC)/ORCALib/obj/assert.a
cp $< $@