Makefile: just build key_reader with the same objs as fish

This commit is contained in:
David Adam 2014-07-14 09:06:40 +08:00
parent 7def139020
commit b884117a9e

View file

@ -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 $@
#