📄 makefile.svn-base
字号:
#=============================================================================## Makefile for Linux CANpie user space tools ## ##=============================================================================##----------------------------------------------------------# Compile for code debugging:# set symbol CONFIG_CP_DEBUG to 'y'#CONFIG_CP_DEBUG = y#----------------------------------------------------------# configure with the old-style /dev/can interface#CONFIG_CP_DEV = n#----------------------------------------------------------# configure with the new-style socket interface#CONFIG_CP_SOCKET = y#----------------------------------------------------------# configure maximum number of physical CAN interfaces#CONFIG_CP_PHYIF = 16PROGS := canconfig canread canwrite cpuserall: $(PROGS)canconfig: canconfig.o $(CC) $(LDFLAGS) -o canconfig canconfig.o canread: canread.o $(CC) $(LDFLAGS) -o canread canread.o canwrite: canwrite.o $(CC) $(LDFLAGS) -o canwrite canwrite.o cpuser: cpuser_sock.o cpuser_test.o $(CC) $(LDFFLAGS) -o cpuser cpuser_sock.o cpuser_test.o clean: rm -f *.o $(PROGS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -