aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index aa3b243..2998c81 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,12 @@
-CFLAGS += -Wall -Wextra -O2 -finline-functions
+CFLAGS += -Wall -Wextra -O2
LDFLAGS += -lssl -lcrypto -lpthread
all: sand-leek
+sand-leek: sand-leek.o onion_base32.o
+
clean:
- rm -vf sand-leek
+ rm -vf sand-leek *.o
.PHONY: all clean