mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-26 16:49:18 +00:00
1 line
893 B
Plaintext
1 line
893 B
Plaintext
|
######################### Default Rules #########################
# These default rules can be overriden in your makefile. The #
# variable definitions for {Asm}, {C}, {Pascal}, {CPlus}, #
# {AOptions}, {COptions}, {POptions}, and {CPlusOptions} can be #
# overriden in your makefile, on the command line, or by an #
# exported shell variable. #
#################################################################
.a.o <09> .a
{Asm} {depDir}{default}.a -o {targDir}{default}.a.o {AOptions}
.c.o <09> .c
{C} {depDir}{default}.c -o {targDir}{default}.c.o {COptions}
.p.o <09> .p
{Pascal} {depDir}{default}.p -o {targDir}{default}.p.o {POptions}
.cp.o <09> .cp
{CPlus} {depDir}{default}.cp -o {targDir}{default}.cp.o {CPlusOptions}
Asm = Asm
C = C
Pascal = Pascal
CPlus = CPlus
AOptions =
COptions =
POptions =
CPlusOptions =
|