summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSilvan Jegen <s.jegen@gmail.com>2016-09-13 20:38:17 +0200
committerSilvan Jegen <s.jegen@gmail.com>2016-09-13 20:38:17 +0200
commit4a0fcd9b9751c2999459d4c93db9a2a0ddb7fa66 (patch)
tree4611366b7955572fdb06d1b789b9fe407a621c4b /Makefile
parent6c312b95ba3e8d53647057dc92fa3ba2feab8c5b (diff)
Add goencxml
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a33f93a..2ccc9ea 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC = gcc
CFLAGS = -Wall -O2
-all: mxml ezxml yxml sxmlc
+all: mxml ezxml yxml sxmlc goencxml
mxml: mxml.c
$(CC) $(CFLAGS) -lmxml -pthread -o mxml mxml.c
@@ -16,6 +16,9 @@ yxml: yxml.c yxmllib.o
sxmlc: sxmlc.c sxmlclib.o
$(CC) $(CFLAGS) -o sxmlc sxmlc.c sxmlclib.o
+goencxml: goencxml.go
+ go build goencxml.go
+
ezxmllib.o: ezxmllib.c
yxmllib.o: yxmllib.c