Skip to content

Instantly share code, notes, and snippets.

@innyso
Last active May 16, 2020 05:30
Show Gist options
  • Save innyso/f6b5192636d8e95fe0e718dbed82c7a4 to your computer and use it in GitHub Desktop.
Save innyso/f6b5192636d8e95fe0e718dbed82c7a4 to your computer and use it in GitHub Desktop.
#makefile #cmd #exist #syntax #snippet

Check if a command exist in Makefile

LS := ; @which ls > /dev/null

ifndef LS
$(eval ls := $(shell which ls))
else
$(eval ls := something/ls
endif

my-ls:
  $(ls) -lah
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment