
\SM68020\S:  Examples

        if m68k
    then cc -Dm68k format.c -o format.o
        elif M68020
    then cc -DM68020 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 m68k or M68020 computer.  If the machine is M68020 the second compile
    command compiles "format.c".  The "DM68020" option to cc(1) causes only the
    machine-dependent lines that pertain to the M68020 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.
