use /usr/local/opt/openssl symlink, ignore a.out

This commit is contained in:
Justin Ramos 2018-12-31 22:47:00 -08:00
parent 1cdbb90f22
commit 2f422d46c5
No known key found for this signature in database
GPG Key ID: 4A33DDE9CB944DC3
2 changed files with 4 additions and 4 deletions

1
.gitignore vendored
View File

@ -10,6 +10,7 @@ src/.settings/
src/**/.dll
src/**/*.o
src/**/*.so
src/**/a.out
build/lib.*
build/temp.*
dist

View File

@ -1,7 +1,7 @@
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
CCFLAGS += -I/usr/local/Cellar/openssl/1.0.2d_1/include
LDFLAGS += -L/usr/local/Cellar/openssl/1.0.2d_1/lib
CCFLAGS += -I/usr/local/opt/openssl/include
LDFLAGS += -L/usr/local/opt/openssl/lib
else ifeq ($(UNAME_S),MINGW32_NT-6.1)
CCFLAGS += -IC:\OpenSSL-1.0.2j-mingw\include -D_WIN32 -march=native
LDFLAGS += -static-libgcc -LC:\OpenSSL-1.0.2j-mingw\lib -lwsock32 -o bitmsghash32.dll -Wl,--out-implib,bitmsghash.a
@ -22,4 +22,3 @@ bitmsghash.o:
clean:
rm -f bitmsghash.o bitmsghash.so bitmsghash*.dll