⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.svn-base

📁 canpie 一个can bus的协议栈 - CAN interface for embedded control - CAN interface for PC (without local
💻 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 + -