J'ai ceci dans mon Makefile :
# Build source files
define compile_rule
%.o : %.$1
$$(COMPILE) $$(COMPILE_FLAGS) $$(CC_FLAGS) -o $$@ $$<
endef
$(foreach EXT, $(SRC_EXT), $(eval $(call compile_rule, $(EXT))))
Cependant, si je tape make
Je reçois cette erreur, pourquoi cela se produit-il ?
*** missing separator (did you mean TAB instead of 8 spaces?). Stop.