Generalize Makefile.Linux a little bit, add FreeBSD support #92
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi =)
Please consider this a spiritual successor to #82, I think @DianeBruce will find this agreeable. My changes should result in no functional difference, and here's what I did:
install(1)
-- this allows you to focus more on what kind of thing you're installing, rather than permissions. It also allows other systems to replace GNUinstall(1)
arguments with their own.Additionally, in the name of FreeBSD support, don't look at /proc/cpuinfo directly on a FreeBSD system but instead allow us to just pass in a variable to indicate whether we support NEON or not.
I wasn't able to test this on a GNU/Linux system, but I've tested it with GNU
make(1)
and it worked as expected there. I expect no issues on GNU/Linux since most of it was string replacements and s/:=/?=/Thank you for your time,
Kyle Evans