From f646eb4907ae7d32638d7b78e949578c812c7050 Mon Sep 17 00:00:00 2001 From: Chris Mikkelson Date: Sat, 2 Nov 2013 02:49:08 +0000 Subject: [PATCH] cc -> $(CC) --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 1abb47c..9a259b9 100644 --- a/Makefile +++ b/Makefile @@ -18,25 +18,25 @@ tags: $(SMTPSINK_SRCS) ctags $(SMTPSINK_SRCS) smtpsink: $(SMTPSINK_OBJS) - cc -o smtpsink $(SMTPSINK_OBJS) $(LIBS) + $(CC) -o smtpsink $(SMTPSINK_OBJS) $(LIBS) conn_pool.o: conn_pool.c smtpsink.h conn_queue.h smtpsink-int.h - cc $(CFLAGS) -c conn_pool.c + $(CC) $(CFLAGS) -c conn_pool.c conn_queue.o: conn_queue.c smtpsink.h conn_queue.h - cc $(CFLAGS) -c conn_queue.c + $(CC) $(CFLAGS) -c conn_queue.c io.o: io.c smtpsink.h conn_queue.h smtpsink-int.h - cc $(CFLAGS) -c io.c + $(CC) $(CFLAGS) -c io.c smtp.o: smtp.c smtpsink.h conn_queue.h smtpsink-int.h responses.inc - cc $(CFLAGS) -c smtp.c + $(CC) $(CFLAGS) -c smtp.c module.o: module.c smtpsink.h - cc $(CFLAGS) -c module.c + $(CC) $(CFLAGS) -c module.c module_api.o: module_api.c smtpsink.h - cc $(CFLAGS) -fPIC -c module_api.c + $(CC) $(CFLAGS) -fPIC -c module_api.c smtpsink.o: smtpsink.c smtpsink.h conn_queue.h smtpsink-int.h -- 2.50.1