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