Mark build test makefiles as being incompatible with parallel make builds, as they...
[pub/USBasp.git] / LUFA / makefile
index ebe2b19..e8b7b7b 100644 (file)
@@ -25,9 +25,9 @@ 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
@@ -45,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