Mark build test makefiles as being incompatible with parallel make builds, as they...
[pub/USBasp.git] / LUFA / makefile
index 6b5d8c7..e8b7b7b 100644 (file)
@@ -25,10 +25,13 @@ version:
 
 # Check if this is being included from a legacy or non LUFA build system makefile
 ifneq ($(LUFA_PATH),)
-  LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA/
+  LUFA_ROOT_PATH = $(patsubst %/,%,$(LUFA_PATH))/LUFA/
   
-  include $(LUFA_PATH)/LUFA/Build/lufa.sources.in
+  include $(patsubst %/,%,$(LUFA_PATH))/LUFA/Build/lufa.sources.in
 else
+  LUFA_BUILD_MODULES     += MASTER
+  LUFA_BUILD_TARGETS     += export_tar version
+
   LUFA_PATH               = .
   ARCH                    = {AVR8,UC3,XMEGA}
   DOXYGEN_OVERRIDE_PARAMS = QUIET=YES PROJECT_NUMBER=$(LUFA_VERSION_NUM)
@@ -42,3 +45,6 @@ else
   include Build/lufa.sources.in
   include Build/lufa.doxygen.in
 endif
+
+
+.PHONY: all export_tar version clean
\ No newline at end of file