Skip to content
Snippets Groups Projects
Select Git revision
  • 39d56aeffecdd50d1e413c8da6edbe8485d5ac29
  • 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 22.15 KiB
    # Hey Emacs, this is a -*- makefile -*-
    #----------------------------------------------------------------------------
    # WinAVR Makefile Template written by Eric B. Weddington, Jrg Wunsch, et al.
    #  >> Modified for use with the LUFA project. <<
    #
    # Released to the Public Domain
    #
    # Additional material for this makefile was written by:
    # Peter Fleury
    # Tim Henigan
    # Colin O'Flynn
    # Reiner Patommel
    # Markus Pfaff
    # Sander Pool
    # Frederik Rouleau
    # Carlos Lamas
    # Dean Camera
    # Opendous Inc.
    # Denver Gingerich
    #
    #----------------------------------------------------------------------------
    # On command line:
    #
    # make all = Make software.
    #
    # make clean = Clean out built project files.
    #
    # make coff = Convert ELF to AVR COFF.
    #
    # make extcoff = Convert ELF to AVR Extended COFF.
    #
    # make program = Download the hex file to the device, using avrdude.
    #                Please customize the avrdude settings below first!
    #
    # make dfu = Download the hex file to the device, using dfu-programmer (must
    #            have dfu-programmer installed).
    #
    # make flip = Download the hex file to the device, using Atmel FLIP (must
    #             have Atmel FLIP installed).
    #
    # make dfu-ee = Download the eeprom file to the device, using dfu-programmer
    #               (must have dfu-programmer installed).
    #
    # make flip-ee = Download the eeprom file to the device, using Atmel FLIP
    #                (must have Atmel FLIP installed).
    #
    # make doxygen = Generate DoxyGen documentation for the project (must have
    #                DoxyGen installed)
    #
    # make debug = Start either simulavr or avarice as specified for debugging, 
    #              with avr-gdb or avr-insight as the front end for debugging.
    #
    # make filename.s = Just compile filename.c into the assembler code only.
    #
    # make filename.i = Create a preprocessed source file for use in submitting
    #                   bug reports to the GCC project.
    #
    # To rebuild project do "make clean" then "make all".
    #----------------------------------------------------------------------------
    
    
    # MCU name
    MCU = at90usb1287
    
    
    # Target board (see library "Board Types" documentation, NONE for projects not requiring
    # LUFA board drivers). If USER is selected, put custom board drivers in a directory called 
    # "Board" inside the application directory.
    BOARD  = NONE