
\Sm68k\S:  Examples

        if M68020
    then cc -DM68020 format.c -o format.o
        elif m68k
    then cc -Dm68k format.c -o format.o
        fi

    This shell program compiles the program in the file "format.c".  It puts
    the compiled version in "format.o".  The program checks if the computer is
    an M68020 or m68k computer.  If the machine is m68k the second compile
    command compiles "format.c".  The "Dm68k" option to cc(1) causes only the
    machine-dependent lines that pertain to the m68k to be executed so that
    "format.o" is correct for the machine it is on.  See the manual page
    fpr cpp(1) for an explanation of the "D" option.
