summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvan Jegen <s.jegen@gmail.com>2016-08-30 20:48:44 +0200
committerSilvan Jegen <s.jegen@gmail.com>2016-08-30 21:37:25 +0200
commitb5d9cacf216b2508a9867c306fe2c60fdde4a607 (patch)
tree0ae0d804045bfa0dc8dacac1a1b3419bc3571c39
Initial commit
-rw-r--r--Makefile8
-rw-r--r--mxml.c10
2 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a3a12f1
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+
+all: mxml
+
+mxml: mxml.c
+ gcc -lmxml -pthread -o mxml mxml.c
+
+.PHONY:
+ all
diff --git a/mxml.c b/mxml.c
new file mode 100644
index 0000000..c773d78
--- /dev/null
+++ b/mxml.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <mxml.h>
+
+int main(int argc, char *argv[]) {
+
+ return 0;
+}
+