Skip to content
Snippets Groups Projects
Select Git revision
  • f92cc29e3a34d7bcc10dbdb374987bb89a928eb4
  • master default protected
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
17 results

makefile

Blame
  • makefile 615 B
    #
    #             LUFA Library
    #     Copyright (C) Dean Camera, 2016.
    #
    #  dean [at] fourwalledcubicle [dot] com
    #           www.lufa-lib.org
    #
    
    # Makefile to build all the LUFA Build Tests. Build Tests are
    # used to verify the correctness of the LUFA library, and are
    # not intended to be modified or compiled by non-developers.
    
    all:
    
    %:
    	@echo Executing \"make $@\" on all LUFA build tests.
    	@echo
    	$(MAKE) -C BoardDriverTest $@
    	$(MAKE) -C BootloaderTest $@
    	$(MAKE) -C ModuleTest $@
    	$(MAKE) -C SingleUSBModeTest $@
    	$(MAKE) -C StaticAnalysisTest $@
    	@echo
    	@echo LUFA build test \"make $@\" operation complete.