jbrandwood / liberis

MIT License
7 stars 2 forks source link

Top-level Makefile needs better documentation about environment variables #6

Closed dshadoff closed 3 months ago

dshadoff commented 1 year ago

In the top-level Makefile, line 11 is: CFLAGS = -O3 -I include

...but I found build errors in the examples when I used the top-level script - the 'include' directory is empty, except for the 'eris' subfolder.

Changing line 11 in the top-level Makefile to this works: CFLAGS = -O3 -I include/eris

dshadoff commented 3 months ago

It turns out that the Makefile is just poorly-documented, and needs to document what it expects from the overall environment.