mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
469 B
26 lines
469 B
####################
|
|
#
|
|
# Module RULES.MKH
|
|
#
|
|
# Description:
|
|
# This module contains the inference rules to be used by the
|
|
# make system
|
|
|
|
.c.exe:
|
|
$(CC) $(CFLAGS) $*.c
|
|
.c.obj:
|
|
$(CC) $(CFLAGS) /c $*.c
|
|
.cpp.exe:
|
|
$(CPP) $(CPPFLAGS) $*.cpp
|
|
.cpp.obj:
|
|
$(CPP) $(CPPFLAGS) /c $*.cpp
|
|
.cxx.exe:
|
|
$(CXX) $(CXXFLAGS) $*.cxx
|
|
.cxx.obj:
|
|
$(CXX) $(CXXFLAGS) /c $*.cxx
|
|
.rc.res:
|
|
$(RC) $(RFLAGS) /r $*.rc
|
|
.asm.exe:
|
|
$(AS) $(AFLAGS) $*.asm
|
|
.asm.obj:
|
|
$(AS) $(AFLAGS) /c $*.asm
|