Browse Source

Merge branch 'double-colon-for-source-files' of https://github.com/rabbitmq/erlang.mk

Loïc Hoguin 9 years ago
parent
commit
84bee705ce
1 changed files with 1 additions and 4 deletions
  1. 1 4
      core/erlc.mk

+ 1 - 4
core/erlc.mk

@@ -179,7 +179,7 @@ define makedep.erl
 					({attribute, _, file, {Dep, _}}, Acc) -> AddHd(Dep, Acc);
 					(_, Acc) -> Acc
 				end, [], Forms)),
-				[F, ":", [[" ", D] || D <- Deps], "\n", CompileFirst(Deps)];
+				[F, "::", [[" ", D] || D <- Deps], "\n", CompileFirst(Deps)];
 			{error, enoent} ->
 				[]
 		end
@@ -203,9 +203,6 @@ endef
 
 ebin/$(PROJECT).app:: $(ERL_FILES) $(CORE_FILES)
 	$(if $(strip $?),$(call compile_erl,$?))
-
-$(sort $(ERL_FILES) $(CORE_FILES)):
-	@touch $@
 endif
 
 clean:: clean-app