aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2024-07-24 22:39:59 -0400
committerPaul Duncan <pabs@pablotron.org>2024-07-24 22:39:59 -0400
commitb328a92f0e3c648bad7ef47a98f1db75e545789a (patch)
treeed6d37508d13cf3296f8ad57dc7214b0697e979d /Makefile
downloadalonzo-sucks-arm64-main.tar.bz2
alonzo-sucks-arm64-main.zip
initial commitHEADmain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b5d8aae
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+APP=./hi
+OBJS=hi.o
+
+.PHONY=all
+
+all: $(APP)
+
+$(APP): $(OBJS)
+ ld -s -o $(APP) $(OBJS)
+
+hi.o: hi.s
+ as -o hi.o hi.s
+
+clean:
+ $(RM) $(APP) $(OBJS)