fix samples/Makefile

This commit is contained in:
Nguyen Anh Quynh 2016-11-19 17:29:51 +08:00
parent 4a03f6021f
commit c4ddf4e36b

View File

@ -128,3 +128,11 @@ endef
staticname = $(subst $(BIN_EXT),,$(1)).static$(BIN_EXT)
define log
@printf " %-7s %s\n" "$(1)" "$(2)"
endef
define compile
${CC} ${CFLAGS} -c $< -o $@
endef