aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMirek Kratochvil <exa.exa@gmail.com>2023-08-02 19:50:50 +0200
committerMirek Kratochvil <exa.exa@gmail.com>2023-08-02 19:50:50 +0200
commitdf8e4931f42bf5a7a8dc21cc31bb7383f3ca2c4d (patch)
tree5a5b104686635a4f5d2c27ec5cebad51b138576e /Makefile
downloaduskel-df8e4931f42bf5a7a8dc21cc31bb7383f3ca2c4d.tar.gz
uskel-df8e4931f42bf5a7a8dc21cc31bb7383f3ca2c4d.tar.bz2
stuff
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d75a9df
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+
+all: uskel
+
+clean:
+ rm -f uskel.o uskel
+
+uskel.o: uskel.s $(wildcard *.s)
+ as $< -o $@
+
+uskel: uskel.o
+ ld $@.o -o $@