summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..6e3343a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+clean:
+ rm -rf $$(find . -name "*~") \
+ $$(find . -name "*.texi") \
+ $$(find . -name "*.info") \
+ gw.*
+
+check:
+ guile -L ./src test/types.scm
+ guile -L ./src test/api.scm
+
+doc/ibkr.texi: doc/ibkr.org
+ emacs --script scripts/compile-docs.el
+
+doc/ibkr.info: doc/ibkr.texi
+ texi2any doc/ibkr.texi -o doc/ibkr.info
+
+doc: doc/ibkr.info