pcidio96.mak

来自「windows系统下实时代码,可以进行底层硬件的实时操作」· MAK 代码 · 共 32 行

MAK
32
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?