Make
bin2hex: bin2hex.c
gcc -Wall -Werror -o bin2hex bin2hex.c
.PHONY: clean
clean :
rm bin2hex
Arguments
makefile:
target:
echo argument is $(argument)
command
make foo=bar target
bin2hex: bin2hex.c
gcc -Wall -Werror -o bin2hex bin2hex.c
.PHONY: clean
clean :
rm bin2hex
makefile:
target:
echo argument is $(argument)
command
make foo=bar target