summaryrefslogtreecommitdiffstats
path: root/config/flags.mk
AgeCommit message (Collapse)Author
2024-04-29build: Replace `make config` with a `./configure` scriptTavian Barnes
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.
2024-04-26config: Just use NOT to implement NORTavian Barnes
2024-04-22fsade: Implement ACL detection on IllumosTavian Barnes
2024-04-19config: Check for getdents{,64}()Tavian Barnes
2024-04-19config: Check for program_invocation_short_nameTavian Barnes
This lets us pick it up on musl too, since there's no __MUSL__ macro. Link: https://wiki.musl-libc.org/faq#Q:-Why-is-there-no-%3Ccode%3E__MUSL__%3C/code%3E-macro?
2024-04-19tests: Add ../src to the include pathTavian Barnes
2024-04-19config: Fix ${SAN} on BSD makeTavian Barnes
This seems to have hit some BSD make limitation, making it set `SAN := y` unconditionally for some reason. Breaking up the expression fixes it.
2024-04-17build: Directly generate version.cTavian Barnes
2024-04-17build: Dont include ${BUILDDIR} in short messagesTavian Barnes
2024-04-17build: Add back the default CFLAGSTavian Barnes
2024-04-16build: Refactor configurationTavian Barnes
We now use a recursive make invocation to do the work of `make config`. The new implementation is also compatible with GNU make 3.81 found on macOS.