From f89d9c34d1e50ba0dbe8d4ccc8707545c8c45004 Mon Sep 17 00:00:00 2001 From: mofaph Date: Wed, 3 Jul 2013 19:53:12 +0800 Subject: [PATCH] =?UTF-8?q?exercise:=209.20:=20Makefile:=20=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exercise/ex9-20/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercise/ex9-20/Makefile b/exercise/ex9-20/Makefile index 3860543..21dd4e2 100644 --- a/exercise/ex9-20/Makefile +++ b/exercise/ex9-20/Makefile @@ -25,10 +25,10 @@ TAGS: find . \( -type d -name .git -prune \) -o \( -type f -name "*.[ch]" \) | xargs etags - ex9-20: ex9-20.o t9-20.o - gcc -Wall $^ -o $@ + $(CC) $(CFLAGS) $^ -o $@ tm: t-malloc.o - gcc -Wall $^ -o $@ + $(CC) $(CFLAGS) $^ -o $@ clean: rm -f $(OBJS) ex9-20 tm TAGS