######################### 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 Ä .a {Asm} {depDir}{default}.a -o {targDir}{default}.a.o {AOptions} .c.o Ä .c {C} {depDir}{default}.c -o {targDir}{default}.c.o {COptions} .p.o Ä .p {Pascal} {depDir}{default}.p -o {targDir}{default}.p.o {POptions} .cp.o Ä .cp {CPlus} {depDir}{default}.cp -o {targDir}{default}.cp.o {CPlusOptions} Asm = Asm C = C Pascal = Pascal CPlus = CPlus AOptions = COptions = POptions = CPlusOptions =