Commit Graph

513 Commits

Author SHA1 Message Date
gdr-ftp
31e9970070 Initial checkin. This version of the sources matches that used to
build the GNO v2.0.4 distribution.
1998-03-09 15:30:26 +00:00
gdr-ftp
784e3de7cd Initial checkin of aroff, binprint, center, less, ls, make, makemake,
passwd, ps, purge, shutdown, stty, upper, and vi.  These sources are
for the versions of the utils shipped with GNO v2.0.4.
1998-03-09 08:30:21 +00:00
gdr-ftp
d00f2dadaa Makefile:
- updated to use the new *.mk files
inst.c:
	- include <gno/contrib.h> vice "contrib.h"
inst.rez:
	- added build date
1998-03-08 18:19:00 +00:00
gdr-ftp
ace3b43bec Makefile:
- deleted a bunch of commented-out lines that had been left
	  in by mistake
1998-03-08 18:16:03 +00:00
gdr-ftp
03cff8f7cc Makefile:
- updated for use with the new *.mk files
libtermcap.rez:
	- added build date
termcap.h:
	- added cvs ident string back in
1998-03-08 18:14:55 +00:00
gdr-ftp
8b1eeb2e86 Makefile:
- the rez fork rules is now in one of the *.mk files; don't
	  include it here
	- make sure the contrib.h header gets installed
libcontrib.rez:
	- added the build date
1998-03-08 18:11:50 +00:00
gdr-ftp
a3eaea8456 lib.mk:
Added $(LOCAL_SETUP) to the list of build targets, before
	$(LIBTARGET).  LOCAL_SETUP should be set in the lower makefiles
	if there is a target which must be made prior to the main
	compilation.
1998-03-08 18:09:03 +00:00
gdr-ftp
4ddaf23478 Makefile:
- modified for use with the new *.mk files
descc.rez, describe.rez, descu.rez:
	- added build date
1998-03-08 17:58:44 +00:00
gdr-ftp
4dffe7ddc2 Makefile:
use single colons for additional dependancies
udl.rez:
	added build date
1998-03-08 17:55:54 +00:00
gdr-ftp
06a5a0d916 Makefile:
- install the GNO man page, not the BSD one
	- place final binary in /usr/bin vice /bin
1998-03-08 17:51:04 +00:00
gdr-ftp
e44027ef07 Makefile:
- abbreviated some macros
	- use single colons on additional dependancies
tests/dotests, tests/fulltests:
	- changed paths for $testcmd and $trcmd
1998-03-08 17:49:45 +00:00
gdr-ftp
531859db70 Makefile:
- abbreviated some macros
	- removed the -v compilation flag (it can be added from the make
	  command line if necessary)
	- use single colons in additional dependancies
sed.desc:
	- expand the description a bit.
1998-03-08 17:46:32 +00:00
gdr-ftp
e42c4e0794 Makefile:
abbreviated some macros
tests/dotests, tests/fulltests:
	changed paths of $testcmd and $trcmd
1998-03-08 17:43:49 +00:00
gdr-ftp
7c0cc1c3d4 Makefile:
changed to handle the new *.mk files
help.rez:
	added build date
1998-03-08 17:40:55 +00:00
gdr-ftp
4028b2d317 Makefile:
- use single colon on additional dependancies
fmt.rez:
	- added build date
1998-03-08 17:38:25 +00:00
gdr-ftp
9103cfa195 Makefile:
abbreviated some macros
colcrt.desc:
	changed 'trenco.myrias.com' to 'ftp.gno.org'
tests/dotests, tests/fulltests:
	changed paths of $testcmd and $trcmd
1998-03-08 17:36:38 +00:00
gdr-ftp
9cdea96615 use single colons on additional dependancies 1998-03-08 17:33:34 +00:00
gdr-ftp
343bb80e9e dotests, fulltests:
Changed paths of $testcmd and $trcmd.
test.list:
	Deleted.  This file is test output and wasn't supposed to be
	checked in to begin with.
1998-03-08 17:31:08 +00:00
gdr-ftp
7c5d013345 Makefile:
abbreviated macros a bit
tests/dotests:
	changed path of $testcmd
tests/fulltests:
	changed path of $trcmd
1998-03-08 17:24:34 +00:00
gdr-ftp
0628df79bb Initial checkin; m16.gno is mostly a collection of stubs that allow
an alternate call interface to the kernel traps and some other library
functions.
1998-03-08 17:18:11 +00:00
gdr-ftp
cffe806766 binconst.mk:
Added MACGEN and MACGEN_FLAGS macros.

binrules.mk:
	Added a (normally empty) macro "LOCAL_SETUP" to the build target.
	If a utility needs a special target to be done prior to the
	main build, then it sets this macro to be that special target(s).

paths.mk:
	Added some comments on the OBJ_DIR directory.
1998-03-08 17:12:34 +00:00
gdr-ftp
7242272eb4 don't have a <termcap.h> in the gno/include directory; this header
file gets put into /usr/include from the directory gno/lib/libtermcap.
1998-03-06 06:24:48 +00:00
gdr-ftp
8e00576fbd status.bin:
- elimnated the "in archive" column
	- updated the following entries:
		gsi, suspda, tmterm, cat, chtyp, cmp, cp, df, false,
		head, kill, mv, pwd, rcp, rm, rmdir, sleep, split,
		tail, tee, test, time, tr, true, uname, uniq,
		wc, yes, asml, assemble, awk, catrez, cksum,
		cmpl, colcrt, compile, ctags, cut, ftp, getvers,
		last, link, rlogin, rsh, script, sed, setvers,
		sum, wall, whois, inetd, login
1998-03-06 05:55:30 +00:00
gdr-ftp
7027be9e4b vfscanf.c:
- Fixed a problem reported by Derek where stack trashing
	  was happening once an EOF was reached.  This was actually
	  only one example of a class of problems; any time __svfscanf
	  returned before filling all the requested arguments, va_arg
	  was left uncalled for some set of arguments.  This has been
	  fixed by adding a "stack cleanup" section to the code where
	  va_arg is called once for each remaining argument.
	- The __svfscanf routine still had large arrays on the stack.
	  These have been changed to static storage class.  There is
	  currently an assert in place to assure that recursion isn't
	  happening since I didn't have the chance yet to verify in
	  detail the control flow here.  This assert (and the related
	  use of the "recursing" variable) can be removed after such
	  a verification.
1998-03-04 06:20:03 +00:00
taubert
6822a8d18f - Fixed infinite loop in traceback()
- Misc. code cleanups
1998-02-22 05:05:54 +00:00
gdr-ftp
9416f9d55c - split the top level GNO docs web page into subpages
- add a file containing a list of man pages to ignore when building
  the html versions of the pages
1998-02-19 03:04:10 +00:00
gdr-ftp
9359f799f6 Makefile, yes.desc:
- change installation point from /usr/bin to /bin
1998-02-19 02:26:07 +00:00
gdr-ftp
59c00c1820 Makefile:
- change installation point from /usr/bin to /bin
1998-02-19 02:25:18 +00:00
gdr-ftp
31f7aea798 Makefile, uname.desc:
- change installation point from /usr/bin to /bin
1998-02-19 02:24:39 +00:00
gdr-ftp
a231c66c6b Makefile:
- added more dependancies
1998-02-19 02:23:42 +00:00
gdr-ftp
10a6b1846a tee.desc:
- updated "Contact", "Where", and "FTP" fields
1998-02-19 02:15:25 +00:00
gdr-ftp
70d9199214 Makefile:
- use single colon on extra dependancies
tail.desc:
	- only give directory for "Where" describe field
1998-02-19 02:14:26 +00:00
gdr-ftp
8ecdfc40b1 Makefile:
- install to /bin directory vice /usr/bin
1998-02-19 02:13:12 +00:00
gdr-ftp
55dc07fbcf Makefile:
- use single colon on extra dependancies
1998-02-19 02:12:18 +00:00
gdr-ftp
b36acdb112 Makefile:
- use single colons on extra dependancies
1998-02-19 02:05:06 +00:00
gdr-ftp
3d887aa334 Makefile:
- in the install and release targets, ensure that the installed
	  header file is of type SRC/CC, otherwise subsequent compilations
	  may fail.
1998-02-19 01:12:36 +00:00
gdr-ftp
79cc150685 Makefile:
- specify files via SRCS vice OBJS.  This eliminates an extraneous
	  ".o" in the final OBJS value.
	- don't attempt to attach a rez fork (leave it for the upper
	  level makefile)
1998-02-19 01:07:56 +00:00
gdr-ftp
7e3c77c4a2 Makefile, stack.asm:
- move generated macro file to /obj hierarchy
Makefile:
	- fix location of (non-generated) macro sources
	- specify files via SRCS vice OBJS.  This eliminates an extraneous
	  ".o" in the final OBJS value.
	- don't attempt to attach a rez fork (leave it for the upper
	  level makefile)
1998-02-19 01:05:17 +00:00
gdr-ftp
3c8936e8bc Makefile:
- eliminate double concatenation of resource fork
	- specify files via SRCS vice OBJS
	- obtain the assert object file from where it is built in
	  the ORCA hierarchy
libc.rez:
	- add build date to displayed data
1998-02-19 01:00:36 +00:00
tribby
bb39be07cc Fix the comment line before cleanup 1998-02-18 19:01:52 +00:00
tribby
3ad387440c Change a few comments to make them match the code:
- stack size is 1024, not 768
   - name of file is prog.mk, not gno.prog.mk
   - remove version number and date string at beginning, since it
     is updated in the id string
1998-02-18 18:22:04 +00:00
gdr-ftp
27924b88c4 Makefile, describe.src:
- updated describe/descc/descu to version 1.0.6
1998-02-18 00:29:28 +00:00
gdr-ftp
8543be29f7 submit.html:
- The describe-submit address is now active.  In fact, it has
	  been for some time; I just forgot to remove from this page
	  the note saying that it was not.
1998-02-18 00:24:09 +00:00
gdr-ftp
e58b811b55 - initial checkin of colcrt as submitted by Steve Reeves 1998-02-17 03:12:57 +00:00
gdr-ftp
872341978d - initial checkin of uname(1), as submitted by Steve Reeves 1998-02-17 02:50:55 +00:00
gdr-ftp
5cf814279c Makefile:
- back out v1.3 changes except for the requirement to use
	  the GNO vice BSD man page.
1998-02-17 02:44:05 +00:00
gdr-ftp
29f6c45c73 Makefile:
- backed out v1.3 changes
1998-02-17 00:35:18 +00:00
gdr-ftp
caf78f9f1c lib.mk:
- backed out v1.4 changes
	- replace .asm (as well as .c) suffixes with .o for OBJS definition
	- added a recipe for building ProDOS renamed object files
1998-02-17 00:33:08 +00:00
gdr-ftp
22fa70695a binconst.mk:
- changed definition of OBJS to remove the full pathnames
	  and to add to previous values of OBJS rather than to act
	  as a default value

binrules.mk:
	- backed out all v1.5 changes except for using $(MAINSRC)
	  vice $(MAIN).c
	- added a recipe for building ProDOS-renamed object files

paths.mk:
	- backed out v1.6 changes
	- added a macro, PRODOS_OBJS.  If this is set to "true", then
	  ProDOS-compliant file names will be used for object files.
1998-02-17 00:26:27 +00:00
gdr-ftp
d124889572 - initial checkin of <sys/utsname.h>. No diffs from the BSD version 1998-02-16 22:46:44 +00:00