Commit ef949769 authored by Konstantin Khlebnikov's avatar Konstantin Khlebnikov

Makefile: no -lrt for mac

Signed-off-by: default avatarKonstantin Khlebnikov <koct9i@gmail.com>
parent 8c4a323d
......@@ -20,7 +20,11 @@ DISTFILES=$(SRCS) $(MANS) $(DOCS) $(SPEC) Makefile
PACKFILES=$(BINARY) $(MANS) $(MANS_F) $(DOCS)
STRIP=strip
TARGET=$(shell ${CC} -dumpmachine | cut -d- -f 2)
TARGET=$(shell ${CC} -dumpmachine)
ifneq (,$(filter %-apple-%,$TARGET))
LIBGS=-lm
endif
ifdef MINGW
CC=i686-w64-mingw32-gcc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment