Skip to content

Instantly share code, notes, and snippets.

View armanexplorer's full-sized avatar
😉

Arman Mazloumzadeh armanexplorer

😉
View GitHub Profile
@bbl
bbl / make_variable_check.md
Created July 13, 2019 12:10
Makefile check if variable is defined

Check if variable is defined in a Makefile

Using ifndef

ifndef MY_FLAG
$(error MY_FLAG is not set)
endif