diff --git a/solidify/Makefile b/solidify/Makefile index 9fd526d..7533052 100644 --- a/solidify/Makefile +++ b/solidify/Makefile @@ -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 -----------------------------------------------------