Update Makefile after make depend.

Suppress warning when reaching end of main on Linux.
This commit is contained in:
Renaud 2016-03-03 21:17:23 +08:00
parent f781d458aa
commit 910e6576b5
2 changed files with 4 additions and 4 deletions

View File

@ -153,7 +153,7 @@ exec.o: exec.c exec.h retcode.h buffer.h crypt.h line.h utf8.h bind.h \
display.h estruct.h eval.h file.h flook.h input.h random.h window.h \
defines.h
execute.o: execute.c execute.h estruct.h bind.h random.h retcode.h \
display.h file.h buffer.h crypt.h line.h utf8.h mlout.h search.h \
display.h file.h buffer.h crypt.h line.h utf8.h input.h mlout.h search.h \
terminal.h defines.h window.h
file.o: file.c file.h buffer.h crypt.h line.h retcode.h utf8.h defines.h \
display.h estruct.h execute.h fileio.h input.h bind.h lock.h mlout.h \
@ -169,9 +169,8 @@ line.o: line.c line.h retcode.h utf8.h buffer.h crypt.h estruct.h mlout.h \
window.h defines.h
lock.o: lock.c estruct.h lock.h
main.o: main.c estruct.h basic.h bind.h bindable.h buffer.h crypt.h \
line.h retcode.h utf8.h display.h eval.h execute.h file.h input.h lock.h \
mlout.h random.h search.h terminal.h defines.h termio.h version.h \
window.h
line.h retcode.h utf8.h display.h eval.h execute.h file.h lock.h mlout.h \
random.h search.h terminal.h defines.h termio.h version.h window.h
mingw32.o: mingw32.c
mlout.o: mlout.c mlout.h
names.o: names.c names.h basic.h bind.h bindable.h buffer.h crypt.h \

1
main.c
View File

@ -358,6 +358,7 @@ int main(int argc, char **argv)
mloutfmt( "Found on line %d", getcline()) ;
kbd_loop() ;
return EXIT_SUCCESS ; /* never reached */
}