aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-12-28 20:24:20 +0100
committerGravatar Tom Willemsen2012-12-28 20:24:20 +0100
commit5535308fffdd58ac17937d676c096fe889acb77e (patch)
tree9cbebf6655a102cf3fa02acbf92fdbc30d8da74d /src/Makefile
parent57f06ec8c977d9011b2692f20c7d5967c7d2a0cc (diff)
downloadmarkam-5535308fffdd58ac17937d676c096fe889acb77e.tar.gz
markam-5535308fffdd58ac17937d676c096fe889acb77e.zip
Restructure
Put all source files in `src/' and add the `conkeror/' directory from the old project.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..c0a9ee8
--- /dev/null
+++ b/src/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 $^