makefile

来自「TUSB2136/3210的bootloader程序,Linux系统下,和TI公」· 代码 · 共 34 行

TXT
34
字号
# TUSB2136/3210 bootloader# See http://www-s.ti.com/sc/psheets/sllu025a/sllu025a.pdf## Copyright (c) 2001 Jim Paris <jim@jtan.com>## This program is free software; you can redistribute it and/or# modify it under the terms of version 2 of the GNU General Public# License, as published by the Free Software Foundation.  This# program is distributed WITHOUT ANY WARRANTY; without even the# implied warranty of merchantability or fitness for a particular# purpose.  You should have received a copy of version 2 of the GNU# General Public License along with this program; if not, write to# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,# Boston, MA 02111-1307, USA.CFLAGS += -Wall $(shell libusb-config --cflags)LDFLAGS += $(shell libusb-config --libs)all: 	bootload i2c-rom i2c-headertusb.o: tusb.c tusb.hbootload.o: bootload.c tusb.hbootload: bootload.o tusb.oi2c-rom.o: i2c-rom.c tusb.hi2c-rom: i2c-rom.o tusb.oi2c-header.o: i2c-header.c tusb.hclean: 	rm -f bootload i2c-rom i2c-header *.o

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?