📄 makefile
字号:
## Makefile for User Defined Node directories## Include global XSPICE selections for CC and other macrosinclude /usr/local/xspice-1-0/include/make.includeINCLUDE = -I. -I$(ROOT)/include/simCFLAGS = .c.o: $*.c ${CC} ${CFLAGS} ${INCLUDE} -c $*.c#-----------------------------------------------------------------------------# Edit the following definition to specify the object files that comprise # your node type. If your node type is completely specified in the # udnfunc.mod file, there is no need to edit this definition. CODE_MODEL_OBJECTS = udnfunc.o #-----------------------------------------------------------------------------# DO NOT MODIFY THE FOLLOWING DEFINITIONS:all : $(CODE_MODEL_OBJECTS)udnfunc.o : udnfunc.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -