aboutsummaryrefslogtreecommitdiff
path: root/contrib/texmacs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/texmacs/Makefile')
-rwxr-xr-xcontrib/texmacs/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/texmacs/Makefile b/contrib/texmacs/Makefile
new file mode 100755
index 00000000..3109524e
--- /dev/null
+++ b/contrib/texmacs/Makefile
@@ -0,0 +1,18 @@
+
+###############################################################################
+# MODULE : Make file for opeenaxiom plugin
+# BY : Joris van der Hoeven
+# COPYRIGHT : This software falls under the GNU general public license;
+# see the file 'LICENSE', which is provided with this package.
+###############################################################################
+
+CC = gcc
+RM = rm -f
+
+all: bin/tm_openaxiom
+
+bin/tm_openaxiom: src/tm_openaxiom.c
+ $(CC) src/tm_openaxiom.c src/texbreaker.c -o bin/tm_openaxiom
+
+clean:
+ $(RM) bin/tm_openaxiom