forked from Lainports/opnsense-ports
15 lines
516 B
Text
15 lines
516 B
Text
--- src/bitmsghash/Makefile.orig 2016-05-02 19:51:46 UTC
|
|
+++ src/bitmsghash/Makefile
|
|
@@ -10,10 +10,10 @@ powtest:
|
|
./testpow.py
|
|
|
|
bitmsghash.so: bitmsghash.o
|
|
- g++ bitmsghash.o -shared -fPIC -lpthread -lcrypto $(LDFLAGS) -o bitmsghash.so
|
|
+ ${CC} bitmsghash.o -shared -fPIC -lpthread -lcrypto $(LDFLAGS) -o bitmsghash.so
|
|
|
|
bitmsghash.o:
|
|
- g++ -Wall -O3 -march=native -fPIC $(CCFLAGS) -c bitmsghash.cpp
|
|
+ ${CC} -Wall -O3 -march=native -fPIC $(CCFLAGS) -c bitmsghash.cpp
|
|
|
|
clean:
|
|
rm -f bitmsghash.o bitmsghash.so
|