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

📄 makefile

📁 AVR单片机模拟USB代码.可实现中断,控制传输,低速设备
💻
字号:
# Name: Makefile# Project: PowerSwitch# Author: Christian Starkjohann# Creation Date: 2005-01-16# Tabsize: 4# Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)# This Revision: $Id: Makefile 276 2007-03-20 10:53:04Z cs $# Concigure the following definitions according to your system. The powerSwitch# tool has been successfully compiled on Mac OS X, Linux and Windows.# Use the following 3 lines on Unix (uncomment the framework on Mac OS X):USBFLAGS = `libusb-config --cflags`USBLIBS = `libusb-config --libs` #-framework CoreFoundationEXE_SUFFIX =# Use the following 3 lines on Windows and comment out the 3 above. You may# have to change the include paths to where you installed libusb-win32#USBFLAGS = -I/usr/local/include#USBLIBS = -L/usr/local/lib -lusb#EXE_SUFFIX = .exeCC		= gccCFLAGS	= $(USBFLAGS) -O -WallLIBS	= $(USBLIBS)PROGRAM = powerSwitch$(EXE_SUFFIX)all: $(PROGRAM).c.o:	$(CC) $(CFLAGS) -c $<$(PROGRAM): powerSwitch.o	$(CC) -o $(PROGRAM) powerSwitch.o $(LIBS)strip: $(PROGRAM)	strip $(PROGRAM)clean:	rm -f *.o $(PROGRAM)

⌨️ 快捷键说明

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