mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
c6c45722d8
Did changes for the initial GNO version. This includes: - prototyping; - changing the facility/priority value from an int to a long (we need 32 bits for all the information); - stack checking code; and - after doing a freopen() of stdin, change it back to text mode. Makefile, logger.rez, logger.desc: New files.
10 lines
176 B
Makefile
10 lines
176 B
Makefile
#
|
|
# $Id: Makefile,v 1.1 1998/06/23 23:23:52 gdr-ftp Exp $
|
|
#
|
|
|
|
PROG = logger
|
|
STACK = 1280 # highest observed: 900-some-odd bytes
|
|
BINDIR = /usr/bin
|
|
|
|
.INCLUDE: /src/gno/prog.mk
|