From 52102bd72552794fbd293aa6d5b63c32650c0141 Mon Sep 17 00:00:00 2001 From: Graham Miller Date: Mon, 31 Jan 2011 13:52:51 -0500 Subject: now respects environment CCFLAGS and LDFLAGS --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0b4a986..60a693f 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ OUT = libgob.a INCLUDES = -I. -I/usr/local/include # C++ compiler flags (-g -O2 -Wall) -CCFLAGS = -g +CCFLAGS ?= -g # compiler CC = gcc @@ -20,7 +20,7 @@ CC = gcc LIBS = -L../ -L/usr/local/lib -lm # compile flags -LDFLAGS = -g +LDFLAGS ?= -g CUNIT_LDFLAGS= -lcunit -- cgit v1.2.3