123456789101112131415161718192021222324252627282930 |
- #
- # Set the following three variables.
- #
- # Path to this directory
- #
- # On Nt systems, the ROOT path MUST be of the form `drive:/path'
- #
- ROOT=/usr/local/ken-cc
- #
- # Build system OS type (eg, MacOSX, Linux, Nt, Solaris, FreeBSD, NetBSD, Plan9)
- #
- SYSHOST=Linux
- #
- # Target system object type (eg, 386, arm, mips, power, sparc)
- #
- OBJTYPE=386
- #
- # No changes required beyond this point
- #
- SYSTARG=$SYSHOST
- OBJDIR=$SYSTARG/$OBJTYPE
- <$ROOT/mkfiles/mkhost-$SYSHOST # variables appropriate for host system
- <$ROOT/mkfiles/mkfile-$SYSTARG-$OBJTYPE # variables used to build target object type
|