mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-21 23:29:16 +00:00
added various files to libc; mostly stdio
This commit is contained in:
parent
4fead8bdd0
commit
eb65e1bf12
@ -1,4 +1,6 @@
|
|||||||
#
|
#
|
||||||
|
# gno/lib/libc/Makefile
|
||||||
|
#
|
||||||
# This is the top-level makefile for libc, GNO v2.0.6
|
# 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
|
# dmake is too bloated right now to due recursive makes well, so before
|
||||||
@ -6,10 +8,13 @@
|
|||||||
# directories:
|
# directories:
|
||||||
# gen, gno, locale, stdio, stdlib, string, sys
|
# gen, gno, locale, stdio, stdlib, string, sys
|
||||||
#
|
#
|
||||||
# $Id: Makefile,v 1.3 1997/07/27 23:59:49 gdr Exp $
|
# Devin Reade, 1997.
|
||||||
|
#
|
||||||
|
# $Id: Makefile,v 1.4 1997/09/05 06:50:30 gdr Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
.INCLUDE: ../const.mk
|
.INCLUDE: ../../paths.mk
|
||||||
|
.INCLUDE: ../const.mk
|
||||||
|
|
||||||
LIBC_OBJ = \
|
LIBC_OBJ = \
|
||||||
sys/exec.o \
|
sys/exec.o \
|
||||||
@ -38,24 +43,89 @@ LIBC_OBJ = \
|
|||||||
gen/hostname.o \
|
gen/hostname.o \
|
||||||
gen/oldlog.o \
|
gen/oldlog.o \
|
||||||
gen/popen.o \
|
gen/popen.o \
|
||||||
|
gen/psignal.o \
|
||||||
gen/pwcache.o \
|
gen/pwcache.o \
|
||||||
gen/scandir.o \
|
gen/scandir.o \
|
||||||
gen/setjmp.o \
|
gen/setjmp.o \
|
||||||
|
gen/siglist.o \
|
||||||
gen/sleep.o \
|
gen/sleep.o \
|
||||||
gen/syslog.o \
|
gen/syslog.o \
|
||||||
gen/tty.o \
|
gen/tty.o \
|
||||||
gen/utime.o \
|
gen/utime.o \
|
||||||
locale/table.o \
|
locale/table.o \
|
||||||
|
stdio/clrerr.o \
|
||||||
|
stdio/fclose.o \
|
||||||
stdio/fdopen.o \
|
stdio/fdopen.o \
|
||||||
|
stdio/feof.o \
|
||||||
|
stdio/ferror.o \
|
||||||
|
stdio/fflush.o \
|
||||||
|
stdio/fgetc.o \
|
||||||
stdio/fgetln.o \
|
stdio/fgetln.o \
|
||||||
|
stdio/fgetpos.o \
|
||||||
|
stdio/fgets.o \
|
||||||
|
stdio/fileno.o \
|
||||||
|
stdio/findfp.o \
|
||||||
|
stdio/flags.o \
|
||||||
|
stdio/fopen.o \
|
||||||
|
stdio/fprintf.o \
|
||||||
|
stdio/fpurge.o \
|
||||||
|
stdio/fputc.o \
|
||||||
|
stdio/fputs.o \
|
||||||
|
stdio/fread.o \
|
||||||
|
stdio/freopen.o \
|
||||||
|
stdio/fscanf.o \
|
||||||
|
stdio/fseek.o \
|
||||||
|
stdio/fsetpos.o \
|
||||||
|
stdio/ftell.o \
|
||||||
|
stdio/funopen.o \
|
||||||
|
stdio/fvwrite.o \
|
||||||
|
stdio/fwalk.o \
|
||||||
|
stdio/fwrite.o \
|
||||||
|
stdio/getc.o \
|
||||||
|
stdio/getchar.o \
|
||||||
|
stdio/gets.o \
|
||||||
|
stdio/getw.o \
|
||||||
|
stdio/makebuf.o \
|
||||||
stdio/mktemp.o \
|
stdio/mktemp.o \
|
||||||
stdio/perror.o \
|
stdio/perror.o \
|
||||||
|
stdio/printf.o \
|
||||||
|
stdio/putc.o \
|
||||||
|
stdio/putchar.o \
|
||||||
|
stdio/puts.o \
|
||||||
|
stdio/putw.o \
|
||||||
|
stdio/refill.o \
|
||||||
|
stdio/remove.o \
|
||||||
|
stdio/rewind.o \
|
||||||
|
stdio/rget.o \
|
||||||
|
stdio/scanf.o \
|
||||||
|
stdio/setbuf.o \
|
||||||
|
stdio/setbuffer.o \
|
||||||
|
stdio/setvbuf.o \
|
||||||
|
stdio/snprintf.o \
|
||||||
|
stdio/sprintf.o \
|
||||||
|
stdio/sscanf.o \
|
||||||
|
stdio/stdio.o \
|
||||||
stdio/tempnam.o \
|
stdio/tempnam.o \
|
||||||
|
stdio/tmpfile.o \
|
||||||
|
stdio/tmpnam.o \
|
||||||
|
stdio/ungetc.o \
|
||||||
|
stdio/vfprintf.o \
|
||||||
|
stdio/vfscanf.o \
|
||||||
|
stdio/vprintf.o \
|
||||||
|
stdio/vscanf.o \
|
||||||
|
stdio/vsnprintf.o \
|
||||||
|
stdio/vsprintf.o \
|
||||||
|
stdio/vsscanf.o \
|
||||||
|
stdio/wbuf.o \
|
||||||
|
stdio/wsetup.o \
|
||||||
|
stdlib/cvt.o \
|
||||||
stdlib/environ.o \
|
stdlib/environ.o \
|
||||||
|
stdlib/fpspecnum.o \
|
||||||
stdlib/getopt.o \
|
stdlib/getopt.o \
|
||||||
stdlib/getsubopt.o \
|
stdlib/getsubopt.o \
|
||||||
string/case.o \
|
string/case.o \
|
||||||
string/str.o
|
string/str.o \
|
||||||
|
string/strerror.o
|
||||||
|
|
||||||
libc: $(LIBC_OBJ)
|
libc: $(LIBC_OBJ)
|
||||||
$(RM) -f $@
|
$(RM) -f $@
|
||||||
|
Loading…
Reference in New Issue
Block a user