aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-10-13 06:16:22 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-10-13 06:24:43 +0200
commit65f1016427f349073387b89a16e0e0b67a0692e3 (patch)
tree44f3c45e94fec8ddc7f357d597beaac1c3f57e09 /Makefile
parentInitial commit. (diff)
downloadhasplib-master.tar.xz
hasplib-master.zip
Simplify cryptoHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 66561f1..392a748 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-CFLAGS ?= -O3 -march=native -fomit-frame-pointer -pipe
+CFLAGS ?= -O3 -march=native -pipe
CFLAGS += -std=c99 $(shell pkg-config --cflags libusb-1.0)
LDLIBS = $(shell pkg-config --libs libusb-1.0)
@@ -11,6 +11,6 @@ hasplib-simple.c: hasplib.c hasplib.h
test: hasplib.c hasplib-simple.c test.c
clean:
- rm -v test
+ @rm -fv test
.PHONY: all clean