📄 pcidio96.mak
字号:
# nmake -nologo -f pcidio96.mak
#
# Set NODEBUG = 1 for no debugging information in the executable image.
# Set RTSS_CRT = 1 to link RTSS single-threaded applications with C run-time library.
# Set RTSS_MTCRT = 1 to link RTSS multi-threaded applications with C run-time library.
NODEBUG = 1
!include <rtx.mak>
all:\
PciDio96.rtss
PciDio96_Aux.obj: PciDio96_Aux.c
$(cc) $(cflags) $(cvars) PciDio96_Aux.c
Timer_Interrupts.obj: Timer_Interrupts.c
$(cc) $(cflags) $(cvars) Timer_Interrupts.c
PciDio96.rtss: Timer_Interrupts.obj PciDio96_Aux.obj
$(link) $(conflags) -out:PciDio96.rtss \
Timer_Interrupts.obj PciDio96_Aux.obj \
$(rtsslflags) $(rtsslibs)
clean:
del *.exe
del *.rtss
del *.obj
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -