We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# help menu export define HELP_MENU_HEADER # Getting Started To build this project, you must have the following installed:
Not sure why we use export define there, but it doesn't work on macOS with the default GNU Make 3.81:
export define
$ make Makefile:52: *** missing separator. Stop.
Removing export helps.
export
The text was updated successfully, but these errors were encountered:
That just means you're using too old Make. Install it from brew and it works.
Sorry, something went wrong.
No branches or pull requests
Not sure why we use
export define
there, but it doesn't work on macOS with the default GNU Make 3.81:Removing
export
helps.The text was updated successfully, but these errors were encountered: