summaryrefslogtreecommitdiffstats
path: root/contrib/ldns-host/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ldns-host/Makefile')
-rw-r--r--contrib/ldns-host/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/contrib/ldns-host/Makefile b/contrib/ldns-host/Makefile
new file mode 100644
index 0000000..9d07a58
--- /dev/null
+++ b/contrib/ldns-host/Makefile
@@ -0,0 +1,23 @@
+PROG=ldns-host
+SRC=ldns-host.c
+MAN=ldns-host.1
+
+LOCALBASE?=/usr/local
+PREFIX?=${LOCALBASE}
+MANDIR?=${PREFIX}/man
+
+XCFLAGS=${CFLAGS} -I${LOCALBASE}/include
+XLDFLAGS=${LDFLAGS} -L${LOCALBASE}/lib -lldns
+
+${PROG}: ${SRC}
+ ${CC} -o $@ ${XCFLAGS} ${XLDFLAGS} ${SRC}
+
+clean:
+ rm -f ${PROG}
+
+install: ${PROG}
+ cp ${PROG} ${PREFIX}/bin/
+ cp ${MAN} ${MANDIR}/man1/
+
+deinstall:
+ rm -f ${PREFIX}/bin/${PROG} ${MANDIR}/man1/${MAN}
OpenPOWER on IntegriCloud