mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Makefile: just build key_reader with the same objs as fish
This commit is contained in:
parent
7def139020
commit
b884117a9e
1 changed files with 2 additions and 2 deletions
|
@ -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 $@
|
||||
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue