3 #     Copyright (C) Dean Camera, 2018.
 
   5 #  dean [at] fourwalledcubicle [dot] com
 
   9 # Makefile for the single USB mode build test.
 
  10 # This test attempts to build the USB module
 
  11 # under fixed device and fixed host modes under
 
  12 # all supported architectures
 
  14 # Path to the LUFA library core
 
  15 LUFA_PATH := ../../LUFA/
 
  17 # Build test cannot be run with multiple parallel jobs
 
  20 all: begin compile clean end
 
  23         @echo Executing build test "SingleUSBModeTest".
 
  27         @echo Build test "SingleUSBModeTest" complete.
 
  31         @echo Building SingleUSBModeTest for ARCH=AVR8 in device only mode...
 
  32         $(MAKE) -f makefile.test clean elf ARCH=AVR8 MCU=at90usb1287 CC_FLAGS='-D USB_DEVICE_ONLY'
 
  34         @echo Building SingleUSBModeTest for ARCH=AVR8 in host only mode...
 
  35         $(MAKE) -f makefile.test clean elf ARCH=AVR8 MCU=at90usb1287 CC_FLAGS='-D USB_HOST_ONLY'
 
  37         @echo Building SingleUSBModeTest for ARCH=XMEGA in device only mode...
 
  38         $(MAKE) -f makefile.test clean elf ARCH=XMEGA MCU=atxmega128a1u CC_FLAGS='-D USB_DEVICE_ONLY'
 
  40         @echo Building SingleUSBModeTest for ARCH=UC3 in device only mode...
 
  41         $(MAKE) -f makefile.test clean elf ARCH=UC3 MCU=uc3a0256 CC_FLAGS='-D USB_DEVICE_ONLY'
 
  43         @echo Building SingleUSBModeTest for ARCH=UC3 in host only mode...
 
  44         $(MAKE) -f makefile.test clean elf ARCH=UC3 MCU=uc3a0256 CC_FLAGS='-D USB_HOST_ONLY'
 
  47         $(MAKE) -f makefile.test clean ARCH=AVR8 MCU=at90usb1287
 
  48         $(MAKE) -f makefile.test clean ARCH=XMEGA MCU=atxmega128a1u
 
  49         $(MAKE) -f makefile.test clean ARCH=UC3 MCU=uc3a0256
 
  53 .PHONY: begin end compile clean
 
  55 # Include common DMBS build system modules
 
  56 DMBS_PATH      ?= $(LUFA_PATH)/Build/DMBS/DMBS
 
  57 include $(DMBS_PATH)/core.mk