summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-04 21:21:48 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-04 21:21:48 +0000
commit5a3b92c2dfd9fbcf8bda10742cea1fb47927536d (patch)
tree254d6651fbcc5d57a46ebbd066aed77ade2a438f /Makefile
parent4add09eab7c263ea57e5940c350c780e883813b9 (diff)
-d option to attach. Also fix CC in Makefile and make it build with DEBUG again.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b60ebc89..168db18e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.23 2007-10-04 19:03:51 nicm Exp $
+# $Id: Makefile,v 1.24 2007-10-04 21:21:48 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean
@@ -26,7 +26,7 @@ SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \
YACC= yacc -d
-CC= cc
+CC?= cc
INCDIRS+= -I. -I- -I/usr/local/include
CFLAGS+= -DBUILD="\"$(VERSION) ($(DATE))\"" -DMETA="'${META}'"
.ifdef PROFILE