summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* configure: Remove stray () from commentTavian Barnes11 days1-1/+1
|
* build: Rename CONFIG to CONFFLAGSTavian Barnes13 days1-1/+1
|
* configure: Fix VAR=value before --optionTavian Barnes13 days1-76/+77
| | | | | | | | | Previously we were not shifting all arguments, leading to $ ./configure CC=gcc --enable-release make: unrecognized option '--enable-release' as the loop would shift the CC=gcc argument instead of --enable-release.
* Embed more configuration info in bfs --versionTavian Barnes2024-06-081-0/+3
|
* configure: Use --with/--without for librariesTavian Barnes2024-05-241-30/+81
|
* configure: Support more standard autoconf optionsTavian Barnes2024-05-241-2/+12
|
* build: Add some nice aliases to ./configureTavian Barnes2024-05-011-51/+90
|
* build: Listen to make -sTavian Barnes2024-04-301-1/+1
|
* build: Replace `make config` with a `./configure` scriptTavian Barnes2024-04-291-0/+98
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.