aboutsummaryrefslogtreecommitdiffstats
path: root/lib/lufa/BuildTests/makefile
diff options
context:
space:
mode:
authorGravatar William Chang <william@factual.com>2019-11-20 22:17:07 -0800
committerGravatar William Chang <william@factual.com>2019-11-20 22:17:07 -0800
commite7f4d56592b3975c38af329e77b4efd9108495e8 (patch)
tree0a416bccbf70bfdbdb9ffcdb3bf136b47378c014 /lib/lufa/BuildTests/makefile
parent71493b2f9bbd5f3d18373c518fa14ccafcbf48fc (diff)
parent8416a94ad27b3ff058576f09f35f0704a8b39ff3 (diff)
downloadqmk_firmware-e7f4d56592b3975c38af329e77b4efd9108495e8.tar.gz
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'lib/lufa/BuildTests/makefile')
-rw-r--r--lib/lufa/BuildTests/makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/lufa/BuildTests/makefile b/lib/lufa/BuildTests/makefile
deleted file mode 100644
index 369ea9ad2..000000000
--- a/lib/lufa/BuildTests/makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-# LUFA Library
-# Copyright (C) Dean Camera, 2017.
-#
-# 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.