3 #     Copyright (C) Dean Camera, 2009.
 
   5 #  dean [at] fourwalledcubicle [dot] com
 
   6 #      www.fourwalledcubicle.com
 
   9 # Makefile to build all the LUFA Demos. Call with "make all" to
 
  12 # Projects are pre-cleaned before each one is built, to ensure any
 
  13 # custom LUFA library build options are reflected in the compiled
 
  17         make -C AudioInput clean
 
  18         make -C AudioInput all
 
  20         make -C AudioOutput clean
 
  21         make -C AudioOutput all
 
  32         make -C Joystick clean
 
  35         make -C KeyboardMouse clean
 
  36         make -C KeyboardMouse all
 
  38         make -C Keyboard clean
 
  41         make -C KeyboardHost clean
 
  42         make -C KeyboardHost all
 
  44         make -C KeyboardHostWithParser clean
 
  45         make -C KeyboardHostWithParser all
 
  47         make -C KeyboardHostViaInt clean
 
  48         make -C KeyboardHostViaInt all
 
  50         make -C MassStorage clean
 
  51         make -C MassStorage all
 
  53         make -C MassStorageHost clean
 
  54         make -C MassStorageHost all
 
  62         make -C MouseFullInt clean
 
  63         make -C MouseFullInt all
 
  65         make -C MouseViaInt clean
 
  66         make -C MouseViaInt all
 
  68         make -C MouseHost clean
 
  71         make -C MouseHostWithParser clean
 
  72         make -C MouseHostWithParser all
 
  74         make -C MouseHostViaInt clean
 
  75         make -C MouseHostViaInt all
 
  77         make -C RNDISEthernet clean
 
  78         make -C RNDISEthernet all
 
  80         make -C StillImageHost clean
 
  81         make -C StillImageHost all
 
  86         make -C USBtoSerial clean
 
  87         make -C USBtoSerial all
 
  91         make -C AudioOutput $@
 
  96         make -C KeyboardMouse $@
 
  98         make -C KeyboardHost $@
 
  99         make -C KeyboardHostWithParser $@
 
 100         make -C KeyboardHostViaInt $@
 
 101         make -C MassStorage $@
 
 102         make -C MassStorageHost $@
 
 105         make -C MouseFullInt $@
 
 106         make -C MouseViaInt $@
 
 108         make -C MouseHostWithParser $@
 
 109         make -C MouseHostViaInt $@
 
 110         make -C RNDISEthernet $@
 
 111         make -C StillImageHost $@
 
 113         make -C USBtoSerial $@