JDierkse hace 5 años
padre
commit
7b1f4e1ddc
Se han modificado 1 ficheros con 4 adiciones y 5 borrados
  1. 4 5
      Makefile

+ 4 - 5
Makefile

@@ -17,9 +17,9 @@ ARCHS        += any
 ARCHS        := $(filter-out any,$(ARCHS))
 
 ifeq (,$(findstring -S,$(COMMANDLINE)))
-ifneq ($(ARCH),)
-$(info ARCH: $(ARCH))
-endif
+        ifneq ($(ARCH),)
+                $(info ARCH: $(ARCH))
+        endif
 endif
 
 # ---------- Defines ----------
@@ -75,7 +75,6 @@ artifacts: $(LOCALOBJECTS)
 # ---------- Libraries ----------
 
 define build_target_library_arch
-	$(eval $@_DATETIME := $(DATETIME))
 	@echo -n " [AR] $(1)\n"
 	@$(PREFIX) $(AR) -crs $(1) $(2) $(POSTFIX)
 	@mkdir -p $(ROOTPATH)/lib/$(ARCH)
@@ -154,7 +153,7 @@ endef
 $(foreach target,$(TARGETS),$(eval $(call add_target,$(target))))
 
 ifneq ($(MAKECMDGOALS),clean)
--include $(LOCALDEPENDS)
+        -include $(LOCALDEPENDS)
 endif
 
 # ---------- Object Rules ----------