aboutsummaryrefslogtreecommitdiffstats
path: root/generic/build.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-07-01 09:26:44 +0200
committerMattias Andrée <maandree@kth.se>2023-07-01 09:26:44 +0200
commitbd32947e35d5da5747a02f0744730cb16077ba39 (patch)
treebf9a9b81b4d50e29fc3dbc63261f1dc064b1ed13 /generic/build.mk
parentChange PREFIX to /usr (diff)
downloadoptimised-true-bd32947e35d5da5747a02f0744730cb16077ba39.tar.gz
optimised-true-bd32947e35d5da5747a02f0744730cb16077ba39.tar.bz2
optimised-true-bd32947e35d5da5747a02f0744730cb16077ba39.tar.xz
Improve makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'generic/build.mk')
-rw-r--r--generic/build.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/generic/build.mk b/generic/build.mk
new file mode 100644
index 0000000..0b2f531
--- /dev/null
+++ b/generic/build.mk
@@ -0,0 +1,7 @@
+CFLAGS = -nostdinc -ffreestanding
+LDFLAGS = -s
+
+LD = $(CC)
+
+true.o false.o: $(MACHINE)/true.c $(MACHINE)/false.c
+ $(CC) -c -o $@ $(MACHINE)/$(@:.o=.c) $(CFLAGS)