Escaping in makefile

It’s the dollar sign, in makefiles you’ll have to type $$ to get a single dollar sign:

M_ARCH := $(shell g++ -dumpmachine | awk '{split($$1,a,"-");print a[1]}')

Leave a Comment