summaryrefslogtreecommitdiffstats
path: root/build/exports.mk
Commit message (Collapse)AuthorAgeFilesLines
* build: Allow flags.mk to override command line variablesTavian Barnes2024-05-211-4/+4
| | | | | | | | Previously, during something like ./configure LDFLAGS=..., any additions to LDFLAGS from the generated makefiles were ignored. I had thought that sub-make invocations would allow those variables to be overridden, but that is not the behaviour of make. So instead, set _LDFLAGS etc. in the generated files so that they don't conflict.
* build: Replace `make config` with a `./configure` scriptTavian Barnes2024-04-291-0/+20
This lets us do more traditional out-of-tree builds like $ ../path/to/bfs/configure $ make The .mk files are moved from ./config to ./build, mostly so that ./configure will auto-complete easily.