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

📄 makefile

📁 ATmega8实现USB接口(采用USB的CDC类
💻
字号:
CC              = gccLIBUSB_CONFIG   = libusb-config# Make sure that libusb-config is in the search path or specify a full path.# On Windows, there is no libusb-config and you must configure the options# below manually. See examples.CFLAGS          = `$(LIBUSB_CONFIG) --cflags` -O -Wall#CFLAGS          = -I/usr/local/libusb/include# On Windows replace `$(LIBUSB_CONFIG) --cflags` with appropriate "-I..."# option to ensure that usb.h is foundLIBS            = `$(LIBUSB_CONFIG) --libs`#LIBS            = `$(LIBUSB_CONFIG) --libs` -framework CoreFoundation# You may need "-framework CoreFoundation" on Mac OS X and Darwin.#LIBS            = -L/usr/local/libusb/lib/gcc -lusb# On Windows use somthing similar to the line above.all: avrdebug.c.o:	$(CC) $(CFLAGS) -c $<avrdebug: avrdebug.o	$(CC) -o avrdebug avrdebug.o $(LIBS)clean:	rm -f *.o	rm -f avrdebug avrdebug.exe

⌨️ 快捷键说明

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