summaryrefslogtreecommitdiffstats
path: root/host/Makefile
diff options
context:
space:
mode:
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}
-