makefile.svn-base
来自「canpie 一个can bus的协议栈 - CAN interface fo」· SVN-BASE 代码 · 共 52 行
SVN-BASE
52 行
#=============================================================================## 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 + =
减小字号Ctrl + -
显示快捷键?