summaryrefslogtreecommitdiff
path: root/tools/rasm/Makefile
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2020-12-30 19:07:31 +0000
committerJuan J. Martinez <jjm@usebox.net>2020-12-30 19:23:41 +0000
commit2682bc5d1d864341aaeb42a449db73c3ecd16d70 (patch)
tree9116764364b4ee0ce7f6037305077807b57776de /tools/rasm/Makefile
downloadubox-msx-lib-ca9b663c147340e92804979a96eee4113ab0b27f.tar.gz
ubox-msx-lib-ca9b663c147340e92804979a96eee4113ab0b27f.zip
Initial import1.0
Diffstat (limited to 'tools/rasm/Makefile')
-rw-r--r--tools/rasm/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/rasm/Makefile b/tools/rasm/Makefile
new file mode 100644
index 0000000..7d6be31
--- /dev/null
+++ b/tools/rasm/Makefile
@@ -0,0 +1,12 @@
+all: rasm
+
+rasm: rasm_v0120.c
+ gcc -s -O2 $< -o $@ -lm -lrt -march=native
+ cp rasm ../../bin
+ rm -f rasm
+
+clean:
+ rm -f rasm
+
+.PHONY: all clean
+