mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
26 lines
547 B
Makefile
26 lines
547 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
|
|
#
|
|
# Devin Reade, 1997.
|
|
#
|
|
# $Id: Makefile,v 1.6 1997/10/03 04:42:51 gdr Exp $
|
|
#
|
|
|
|
.INCLUDE: ../../paths.mk
|
|
.INCLUDE: ../const.mk
|
|
|
|
ORCALIB_OBJ = \
|
|
$(ORCA_SRC)/orcalib/obj/assert.a
|
|
|
|
libc:
|
|
$(MAKELIB) $(MAKELIBFLAGS) -l $@ $(ORCALIB_OBJ)
|
|
|
|
.PHONY: libc
|