aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-12-24 01:27:14 +0100
committerGravatar Tom Willemsen2012-12-24 01:27:14 +0100
commit77c7dbaa9ae845b0795f4da33eb0d285f6b9d1c4 (patch)
tree0168de30ce7b4107ed13fc57974f95850ea88e73 /Makefile
downloadmarkam-77c7dbaa9ae845b0795f4da33eb0d285f6b9d1c4.tar.gz
markam-77c7dbaa9ae845b0795f4da33eb0d285f6b9d1c4.zip
Initial commit
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..c0a9ee8
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+.PHONY: all
+
+all: linkwave convert
+linkwave: linkwave.scm paths.o
+ csc $^ -o $@
+
+convert: convert.scm paths.o
+ csc $^ -o $@
+
+paths.o: paths.scm
+ csc -c $^