Skip to content
Snippets Groups Projects
Commit 695926ba authored by Tommy Olofsson's avatar Tommy Olofsson
Browse files

Fixed warning in makefile.

parent 2e9193cf
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ else ifeq ($(UNAME_S),Darwin) ...@@ -18,7 +18,7 @@ else ifeq ($(UNAME_S),Darwin)
LDFLAGS=-L. LDFLAGS=-L.
LDLIBS=-llabcomm LDLIBS=-llabcomm
MAKESHARED=clang -o $1 -shared -Wl,-install_name,$2 $3 -lc MAKESHARED=clang -o $1 -shared -Wl,-install_name,$2 $3 -lc
else if $(findstring(CYGWIN,$(UNAME_S)) else ifneq ($(findstring CYGWIN,$(UNAME_S)),)
CFLAGS=-std=c99 -g -Wall -Werror -O3 -I. -Itest CFLAGS=-std=c99 -g -Wall -Werror -O3 -I. -Itest
CC=$(CROSS_COMPILE)gcc CC=$(CROSS_COMPILE)gcc
LD=$(CROSS_COMPILE)ld LD=$(CROSS_COMPILE)ld
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment