BSD 2 development
[unix-history] / src / ex / READ_ME
CommitLineData
47f0acb2
BJ
1Sun Apr 8 16:32:57 PST 1979
2
3There are 2 skeletal makefiles: makefile.v6 which I made from
4the local makefile.CORY, and makefile.v7 which I made from makefile.VAX.
5
6If you wish to change pathnames or some such, then look at ex_tune.h.
7Conditional compilation flags:
8 -DTRACE for debugging (wont then fit on an 11)
9 -DV6 for version 6, using raw (v7 uses cbreak)
10 -DCHDIR compile in undocumented old chdir (cd) command
11 -DLISP compile in lisp hacks
12 -DUCVISUAL compile in code to handle \ escapes for visual on
13 upper case only terminals. gross.
14
15Ex means to avoid stdio like the plague, only needing a printf which
16prints through putchar and thus needs doprnt.s from the library.
17SOMEONE AT SOME POINT REVERSED THE ORDER OF THE ARGS TO STROUT SO BE
18SURE THAT THE 11PRINTF.C ORDER IS CORRECT. IF NOT USE PRINTF.C.
19
20Ex is very large, but should fit (barely) on an 11/70. If there isn't at
21least 1K bytes of text space left you have dragged in something which isnt
22necessary. You should not be dragging in stdio. Look at the tail of
23a "nm -ng" to see what is going on if this happens.