summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-19 00:24:33 +0200
committerPaul Buetow <paul@buetow.org>2026-02-19 00:24:33 +0200
commita96e591f64bc1ddf4c0e46cfa49c5dec7e8c7720 (patch)
tree1dfdcc8c91299a74b80ef896398fdb2c90c770b6 /src
parentaa0b76649161fb180d9d43ab74c2eb58ff4a83b6 (diff)
migrate build system from BSD make (pmake) to GNU make
- Replace BSD make != shell assignment with $(shell ...) idiom - Replace static $(OBJS): rule + sed hack with %.o: %.c pattern rule - Use $(MAKE) for all recursive make invocations - Update CLAUDE.md to document GNU make instead of pmake - Build verified clean on Fedora (GCC 15, all 14 examples pass) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'src')
-rw-r--r--src/build.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build.h b/src/build.h
index c8341fa..794ac65 100644
--- a/src/build.h
+++ b/src/build.h
@@ -36,7 +36,7 @@
#ifndef BUILD_H
#define BUILD_H
-#define BUILDNR 9666
-#define OS_FREEBSD
+#define BUILDNR 9670
+#define OS_LINUX
#endif