aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-07-14 09:06:40 +0800
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-07-14 09:06:40 +0800
commitb884117a9e0ab2eeae7076cea404b8d146844fcf (patch)
treee03eeb2cbbc748de388e031b7eb799ef146aec8e /Makefile.in
parent7def1390204d8d73109a2725bf48b8f8c61c419a (diff)
Makefile: just build key_reader with the same objs as fish
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index d808471a..9fe0f8e0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -708,8 +708,8 @@ fish_indent: $(FISH_INDENT_OBJS)
# Neat little program to show output from terminal
#
-key_reader: key_reader.o input_common.o common.o env_universal_common.o wutil.o iothread.o utf8.o
- $(CXX) $(CXXFLAGS) $(LDFLAGS_FISH) key_reader.o input_common.o common.o env_universal_common.o wutil.o iothread.o utf8.o $(LIBS) -o $@
+key_reader: $(FISH_OBJS) key_reader.o
+ $(CXX) $(CXXFLAGS) $(LDFLAGS_FISH) $^ $(LIBS) -o $@
#