summaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-13 23:41:58 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-13 23:41:58 +0000
commit488a67e5a3a607680dab9d7be286ae40f6a63965 (patch)
tree8bbba8e3c474e4123ee7e1dfde1a388fbe011844 /GNUmakefile
parentdf9a2886dd3215431481db7c07204caba30b829a (diff)
Whoops, don't use the name of the rule here now.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 8774b276..dbb56656 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,4 +1,4 @@
-# $Id: GNUmakefile,v 1.96 2009-05-13 23:33:54 nicm Exp $
+# $Id: GNUmakefile,v 1.97 2009-05-13 23:41:58 nicm Exp $
.PHONY: clean
@@ -34,7 +34,7 @@ include config.mk
OBJS= $(patsubst %.c,%.o,$(SRCS))
all: $(OBJS)
- $(CC) $(LDFLAGS) -o $@ $+ $(LIBS)
+ $(CC) $(LDFLAGS) -o tmux $+ $(LIBS)
depend: $(SRCS)
$(CC) $(CPPFLAGS) $(CFLAGS) -MM $(SRCS) > .depend