solidify/Makefile (LDFLAGS): rename to LDLIBS

The obsolete use of LDFLAGS for libraries caused the build to fail.
This commit is contained in:
Werner Almesberger 2014-09-04 01:30:05 -03:00
parent 671b74d81c
commit 9de0b4396b
1 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,8 @@
#
# Makefile - Makefile of solidify
#
# Written 2010 by Werner Almesberger
# Copyright 2010 by Werner Almesberger
# Written 2010, 2014 by Werner Almesberger
# Copyright 2010, 2014 by Werner Almesberger
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -19,7 +19,8 @@ CFLAGS_WARN = -Wall -Wshadow -Wmissing-prototypes \
-Wmissing-declarations -Wno-format-zero-length
CFLAGS = $(CFLAGS_WARN) -g -O9 `pkg-config --cflags gtk+-2.0`
LDFLAGS = -lm `pkg-config --libs gtk+-2.0`
LDFLAGS =
LDLIBS = -lm `pkg-config --libs gtk+-2.0`
# ----- Verbosity control -----------------------------------------------------