Merge pull request #351 from krihal/build_macos

Make Clixon build on MacOS.
This commit is contained in:
Olof Hagsand 2022-08-16 11:47:36 +02:00 committed by GitHub
commit 971ecb1b7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 112 additions and 12 deletions

View file

@ -59,7 +59,13 @@ CC = @CC@
CFLAGS = @CFLAGS@
INSTALL = @INSTALL@
INSTALL_LIB = @INSTALL@
INSTALLFLAGS = @INSTALLFLAGS@
ifeq ($(HOST_VENDOR),apple)
INSTALLFLAGS =
else
INSTALLFLAGS = @INSTALLFLAGS@
endif
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
CPPFLAGS = @CPPFLAGS@