summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorJ08nY2017-04-06 16:26:26 +0200
committerJ08nY2017-04-06 16:56:45 +0200
commitd4a152b9daf665db62e3e30ca40f3cf94a1a30af (patch)
treeec06a8e9eaa76276e5df1a5a4e5ed8cab6b12a38 /src/Makefile
parent6ef98279d0a9b9dfebbe2620e50da9cbea0cbd56 (diff)
downloadecgen-d4a152b9daf665db62e3e30ca40f3cf94a1a30af.tar.gz
ecgen-d4a152b9daf665db62e3e30ca40f3cf94a1a30af.tar.zst
ecgen-d4a152b9daf665db62e3e30ca40f3cf94a1a30af.zip
Fix ellinit leak, also compile with pari 2.9.2 for ellsea fix
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index a149946..427d17f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -17,7 +17,7 @@ endif
LDFLAGS = -L../lib/parson -L../lib/sha1 -L../lib/pari
INCLUDES = -I. -I../lib
-LIBS = -lrt -lpari -lparson
+LIBS = -lrt -lpthread -lparson -lsha1 -lpari
####
@@ -50,8 +50,8 @@ econvert: econvert.o $(ECONVERT_OBJ)
####
clean-all: clean
- rm ../ecgen
- rm ../econvert
+ rm -f ../ecgen
+ rm -f ../econvert
clean:
find . -type f -name '*.o' -exec rm {} +
@@ -60,4 +60,4 @@ format:
clang-format -i $(SRC)
clang-format -i $(HDR)
-.PHONY: all gp2c clean-all clean clean-gp format
+.PHONY: all clean-all clean format