aboutsummaryrefslogtreecommitdiffstats
path: root/BuildTests/SingleUSBModeTest
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2016-04-05 21:19:29 +1000
committerDean Camera <dean@fourwalledcubicle.com>2016-04-05 21:19:29 +1000
commit49148fef9b5d74e5db607c6e39ad1c08f62b9b58 (patch)
tree1acda324a1334c208f775b1c9e22e934ef7c64f5 /BuildTests/SingleUSBModeTest
parent9669a00c34dc7545b2ca538b5aa0fde745483824 (diff)
parent3126cbbf96a24afd447ece00248e5ece39dd088a (diff)
downloadlufa-49148fef9b5d74e5db607c6e39ad1c08f62b9b58.tar.gz
lufa-49148fef9b5d74e5db607c6e39ad1c08f62b9b58.tar.bz2
lufa-49148fef9b5d74e5db607c6e39ad1c08f62b9b58.zip
Replace the LUFA build system with DMBS.
Replace LUFA build system with its successor, DMBS, for easier maintenance.
Diffstat (limited to 'BuildTests/SingleUSBModeTest')
-rw-r--r--BuildTests/SingleUSBModeTest/makefile5
-rw-r--r--BuildTests/SingleUSBModeTest/makefile.test12
2 files changed, 12 insertions, 5 deletions
diff --git a/BuildTests/SingleUSBModeTest/makefile b/BuildTests/SingleUSBModeTest/makefile
index 54f1e1f6f..712af0b45 100644
--- a/BuildTests/SingleUSBModeTest/makefile
+++ b/BuildTests/SingleUSBModeTest/makefile
@@ -52,5 +52,6 @@ clean:
.PHONY: begin end compile clean
-# Include LUFA build script makefiles
-include $(LUFA_PATH)/Build/lufa_core.mk
+# Include common DMBS build system modules
+DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS
+include $(DMBS_PATH)/core.mk
diff --git a/BuildTests/SingleUSBModeTest/makefile.test b/BuildTests/SingleUSBModeTest/makefile.test
index d85a0b301..116c001c4 100644
--- a/BuildTests/SingleUSBModeTest/makefile.test
+++ b/BuildTests/SingleUSBModeTest/makefile.test
@@ -64,6 +64,12 @@ C_FLAGS += -Wnested-externs
#CC_FLAGS += -Wjump-misses-init
#CC_FLAGS += -pedantic
-# Include LUFA build script makefiles
-include $(LUFA_PATH)/Build/lufa_sources.mk
-include $(LUFA_PATH)/Build/lufa_build.mk
+# Include LUFA-specific DMBS extension modules
+DMBS_LUFA_PATH ?= $(LUFA_PATH)/Build/LUFA
+include $(DMBS_LUFA_PATH)/lufa-sources.mk
+include $(DMBS_LUFA_PATH)/lufa-gcc.mk
+
+# Include common DMBS build system modules
+DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS
+include $(DMBS_PATH)/core.mk
+include $(DMBS_PATH)/gcc.mk