Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build: Fix ./configure --help | Tavian Barnes | 2024-08-23 | 1 | -2/+2 |
| | | | | Fixes: 49a5d48 ("configure: Fix VAR=value before --option") | ||||
* | configure: Remove stray () from comment | Tavian Barnes | 2024-06-20 | 1 | -1/+1 |
| | |||||
* | build: Rename CONFIG to CONFFLAGS | Tavian Barnes | 2024-06-18 | 1 | -1/+1 |
| | |||||
* | configure: Fix VAR=value before --option | Tavian Barnes | 2024-06-18 | 1 | -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 --version | Tavian Barnes | 2024-06-08 | 1 | -0/+3 |
| | |||||
* | configure: Use --with/--without for libraries | Tavian Barnes | 2024-05-24 | 1 | -30/+81 |
| | |||||
* | configure: Support more standard autoconf options | Tavian Barnes | 2024-05-24 | 1 | -2/+12 |
| | |||||
* | build: Add some nice aliases to ./configure | Tavian Barnes | 2024-05-01 | 1 | -51/+90 |
| | |||||
* | build: Listen to make -s | Tavian Barnes | 2024-04-30 | 1 | -1/+1 |
| | |||||
* | build: Replace `make config` with a `./configure` script | Tavian Barnes | 2024-04-29 | 1 | -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. |