summaryrefslogtreecommitdiffstats
path: root/host/Makefile
diff options
context:
space:
mode:
authorroot <root@lamia.panaceas.james.local>2016-08-20 14:04:59 +0100
committerroot <root@lamia.panaceas.james.local>2016-08-20 14:04:59 +0100
commitb063a2da3024a2e3175e1ba9b0a87cb6c7470765 (patch)
treef5c90c4119b091876a3f53acf4e581316eec4926 /host/Makefile
parentbc832d6d342922a828aebb997d1d9c6626898487 (diff)
downloadcandlestick-b063a2da3024a2e3175e1ba9b0a87cb6c7470765.tar.gz
candlestick-b063a2da3024a2e3175e1ba9b0a87cb6c7470765.tar.bz2
candlestick-b063a2da3024a2e3175e1ba9b0a87cb6c7470765.zip
candlestick
Diffstat (limited to 'host/Makefile')
-rw-r--r--host/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/host/Makefile b/host/Makefile
deleted file mode 100644
index 2013f89..0000000
--- a/host/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-INCLUDES=$(shell pkg-config --cflags libusb-1.0)
-LIBS=-Bstatic $(shell pkg-config --libs libusb-1.0) -lpthread -Bdynamic -ludev
-
-LDFLAGS=-s
-PROG=cryptopad
-SRCS=hexdump.c cryptopad.c
-
-OBJS=${SRCS:%.c=%.o}
-
-CFLAGS=${OPT}
-CPPFLAGS=${INCLUDES} ${DEFINES}
-
-default:${PROG}
-
-
-${PROG}:${OBJS}
- ${CC} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}
-
-install: ${PROG}
- install -c -m 755 ${PROG} /sbin/${PROG}
-clean:
- /bin/rm -f *~ *.d ${PROG} ${OBJS}
-