aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-04-04 00:25:27 -0400
committerIan Moffett <ian@osmora.org>2025-04-04 00:25:27 -0400
commit0f423d331a60f5740fce185cc65f04e526b33222 (patch)
tree6a26de8de66e9a2a136b00cd705f198ced12998f /Makefile
Initial commit
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..05dde41
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+CFILES = $(shell find src/ -name "*.c")
+CC = gcc
+
+bin/ldo: $(CFILES)
+ mkdir -p $(@D)
+ $(CC) $^ -o $@ -I src/include/