Merge pull request #2 from zjor/macOS-build

Mac OS build support
pull/6/merge
Sergey Bakhurin 2018-11-17 18:00:26 +03:00 zatwierdzone przez GitHub
commit d1def49fad
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -7,7 +7,9 @@ ifeq ($(OS),Windows_NT)
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
MAKE = make
MAKE = make
else ifeq ($(UNAME_S),Darwin)
MAKE = make
endif
endif

Wyświetl plik

@ -13,6 +13,10 @@ else
DSPL_LIBNAME = libdspl.so
DEF_OS = LINUX_OS
LFLAGS = -lm -ldl
else ifeq ($(UNAME_S),Darwin)
DSPL_LIBNAME = libdspl.so
DEF_OS = LINUX_OS
LFLAGS = -lm -ldl
endif
endif