Skip to content

Commit

Permalink
Makefile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
igor725 committed Apr 6, 2019
1 parent d546009 commit 8a172fc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Makefile
Expand Up @@ -9,7 +9,7 @@ ifndef $(PLAT)
ifeq ($(OS),Windows_NT)
PLAT=mingw
else
PLAT=$(shell uname -s | tr -s '[:upper:]' '[:lower:]')
PLAT=$(shell uname -s | tr '[:upper:]' '[:lower:]')
endif
endif

Expand Down Expand Up @@ -38,9 +38,10 @@ CFLAGS_darwin=-w -g -pipe

BSDLIBS=-lcurl -lexecinfo -lopenal -lGL -lX11

CC_freebsd=gcc
CC_freebsd=clang
LIBS_freebsd=$(BSDLIBS) -lm -lpthread
INCDIRS_freebsd=-I /usr/local/include -L /usr/Xlocal/lib
INCDIRS_freebsd=-I /usr/local/include
LDFLAGS_freebsd=-L /usr/local/lib
CFLAGS_freebsd=-w -g -pipe

CC_openbsd=gcc
Expand Down

0 comments on commit 8a172fc

Please sign in to comment.