mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	 ce260ae786
			
		
	
	
		ce260ae786
		
	
	
	
	
		
			
			Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode.
		
			
				
	
	
		
			27 lines
		
	
	
		
			785 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			785 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| #             LUFA Library
 | |
| #     Copyright (C) Dean Camera, 2010.
 | |
| #              
 | |
| #  dean [at] fourwalledcubicle [dot] com
 | |
| #      www.fourwalledcubicle.com
 | |
| #
 | |
| 
 | |
| # Makefile to build the LUFA library, projects and demos.
 | |
| 
 | |
| # Call with "make all" to rebuild everything, "make clean" to clean everything,
 | |
| # "make clean_list" to remove all intermediatary files but preserve any binaries,
 | |
| # "make doxygen" to document everything with DoxyGen (if installed) and
 | |
| # "make clean_doxygen" to remove generated Doxygen documentation from everything.
 | |
| 
 | |
| all:
 | |
| 
 | |
| %:
 | |
| 	@echo Executing \"make $@\" on all LUFA library elements.
 | |
| 	@echo
 | |
| 	make -C LUFA/ $@ -s
 | |
| 	make -C Demos/ $@ -s
 | |
| 	make -C Projects/ $@ -s
 | |
| 	make -C Bootloaders/ $@ -s
 | |
| 	@echo
 | |
| 	@echo LUFA \"make $@\" operation complete.
 |