using dll only for windows

This commit is contained in:
Gabriel mermelstein 2024-09-20 12:57:37 +03:00
parent 36cf1d4b56
commit 0dcb66bfc1
No known key found for this signature in database
GPG Key ID: 82B8134785FEAE0D

View File

@ -6,8 +6,10 @@ INCS = -I$(NEGENTROPY_ROOT) -I/opt/homebrew/include/ -I$(NEGENTROPY_ROOT)/vendor
ifeq ($(detected_OS),Linux)
TARGET = libnegentropy.a
else
else ifeq ($(OS),Windows_NT)
TARGET = libnegentropy.dll
else
TARGET = libnegentropy.so
endif
.PHONY: all clean install-deps precompiled-header build-lib