aboutsummaryrefslogtreecommitdiff
path: root/setup/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'setup/Makefile')
-rw-r--r--setup/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/setup/Makefile b/setup/Makefile
new file mode 100644
index 0000000..5b6dbe7
--- /dev/null
+++ b/setup/Makefile
@@ -0,0 +1,14 @@
+all: build
+
+build: setup.so
+
+objects = xosc.o clocks.o gpio.o uart.o
+
+setup.so: $(objects)
+ arm-none-eabi-ld -r -T combine.ld -o setup.so $(objects)
+
+$(objects): %.o: %.s
+ arm-none-eabi-as -o $@ $<
+
+clean:
+ rm setup.so *.o