gno/lib/libc/gno/Makefile
gdr-ftp 6eebdb8e3a Makefile, vsprintmt.c:
- Added the sprintmt and vsprintmt routines.  These are thread
	  safe variants of the sprintf and vsprintf routines.  Note that
	  they don't support as many formatting options as stdio does.

gnomisc.c:
	- Define the global variable "__progname".  This is initially
	  set to "(unknown)", but is properly initialized to the return
	  value of __prognameGS() the first time that function is called.
1998-10-31 17:22:05 +00:00

26 lines
541 B
Makefile

#
# gno/libc/gno/Makefile
#
# $Id: Makefile,v 1.8 1998/10/31 17:22:05 gdr-ftp Exp $
#
LIB = c
LIBPFX = $(OBJ_DIR)../
NO_REZ = true
SRC_ASM = gnocmd.asm parsearg.asm stack.asm
SRC_C = gnomisc.c gsstring.c map.c stack2.c vsprintmt.c
SRCS = $(SRC_ASM) $(SRC_C)
.INCLUDE: /src/gno/lib/lib.mk
MACROS_ORCA = $(ORCA_DIST)/libraries/ORCAInclude
MACRO_FILES = $(MACROS_ORCA)/m16.tools $(MACROS_ORCA)/m16.orca
MAC = $(OBJ_DIR)stack.mac
$(MAC):
macgen -p stack.asm $@ $(MACRO_FILES)
gnocmd.o: gnocmd.mac
parsearg.o: parsearg.mac
stack.o: $(MAC)