aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..dd9869f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,25 @@
+include config.mk
+
+build: config.h
+ ${CC} -ljson-c wcli-gen.c -o wcli-gen
+ ${CC} wcli.c -o wcli
+
+config.h: config.def.h
+ cp config.def.h config.h
+
+install: build
+ mkdir -p $(PREFIX)/bin
+ cp -f wcli wcli-gen wcli-query $(PREFIX)/bin
+ chmod 755 ${PREFIX}/bin/wcli
+ chmod 755 ${PREFIX}/bin/wcli-gen
+ chmod 755 ${PREFIX}/bin/wcli-query
+
+uninstall:
+ rm -f ${PREFIX}/bin/wcli\
+ ${PREFIX}/bin/wcli-gen\
+ ${PREFIX}/bin/wcli-query
+
+clean:
+ rm wcli wcli-gen
+
+.PHONY: build install uninstall clean