Skip to content
Snippets Groups Projects
Select Git revision
  • 2f03312912a07269faace1a99263902aa9f21fa3
  • master default
  • dev
3 results

index.html

Blame
  • makefile 458 B
    #
    #             LUFA Library
    #     Copyright (C) Dean Camera, 2010.
    #              
    #  dean [at] fourwalledcubicle [dot] com
    #      www.fourwalledcubicle.com
    #
    
    # Makefile to build all the LUFA Demos. Call with "make all" to
    # rebuild all demos.
    
    # Projects are pre-cleaned before each one is built, to ensure any
    # custom LUFA library build options are reflected in the compiled
    # code.
    
    %:
    	$(MAKE) -C Device $@
    	$(MAKE) -C Host $@
    	$(MAKE) -C DualRole $@