gno/lib/libc/gen/Makefile
gdr-ftp 273780523c Makefile:
eliminate oldlog.c from the build.  old_syslog() was only used by
	syslog2.asm, and inspection showed it to be likely buggy anyway.
	It was missing a field in the passed data structure, and using
	it would cause any long-running daemon to run out of memory if
	didn't crash first.  For now I'm leaving oldlog.c where it is
	rather than doing a 'cvs rm'.

syslog.c:
	Major changes...
	- The facility/priority has gone back to being of type int vice long;
	  the original change was a red herring.
	- The current syslog implementation will now talk to Phil's original
	  syslogd.
	- The busy wait in sendPort now forces a context switch.

syslog2.asm:
	- I commented the sources while figuring out what Phil's syslogd
	  was doing.  I may was well check in those comments even though
	  this file is not currently used.
	- fixed the save name and the 'mcopy' directive

vis.c, unvis.c:
	- initial checkin
1999-01-04 05:10:36 +00:00

20 lines
476 B
Makefile

#
# Makefile for libc/gen.
#
# $Id: Makefile,v 1.12 1999/01/04 05:10:36 gdr-ftp Exp $
#
LIB = c
LIBPFX = $(OBJ_DIR)../
NO_REZ = true
SRC_ASM = setjmp.asm
SRC_C = basename.c bmem.c compat.c dirent.c err.c fnmatch.c fts.c \
getcwd.c getgrent.c getlogin.c getpass.c getpwent.c \
getttyent.c hostname.c \
popen.c psignal.c pwcache.c scandir.c siglist.c sleep.c \
syslog.c tty.c uname.c unvis.c utime.c vis.c
SRCS = $(SRC_ASM) $(SRC_C)
.INCLUDE: /src/gno/lib/lib.mk