comparison src/Makefile @ 22095:2cc0de1e05a6 v8.2.1597

patch 8.2.1597: the channel source file is too big Commit: https://github.com/vim/vim/commit/8b5866ded6036f7adece26b6d16962bbd2d47842 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 5 15:48:51 2020 +0200 patch 8.2.1597: the channel source file is too big Problem: The channel source file is too big. Solution: Move job related code to a new source file.
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Sep 2020 16:00:04 +0200
parents 7ebb419ebc35
children 8eed19bd0235
comparison
equal deleted inserted replaced
22094:659d4fe617d7 22095:2cc0de1e05a6
1706 $(TCL_SRC) \ 1706 $(TCL_SRC) \
1707 $(RUBY_SRC) 1707 $(RUBY_SRC)
1708 1708
1709 EXTRA_SRC = if_lua.c if_mzsch.c auto/if_perl.c if_perlsfio.c \ 1709 EXTRA_SRC = if_lua.c if_mzsch.c auto/if_perl.c if_perlsfio.c \
1710 if_python.c if_python3.c if_tcl.c if_ruby.c \ 1710 if_python.c if_python3.c if_tcl.c if_ruby.c \
1711 gui_beval.c netbeans.c channel.c \ 1711 gui_beval.c netbeans.c job.c channel.c \
1712 $(GRESOURCE_SRC) 1712 $(GRESOURCE_SRC)
1713 1713
1714 # Unittest files 1714 # Unittest files
1715 JSON_TEST_SRC = json_test.c 1715 JSON_TEST_SRC = json_test.c
1716 JSON_TEST_TARGET = json_test$(EXEEXT) 1716 JSON_TEST_TARGET = json_test$(EXEEXT)
1960 if_python3.pro \ 1960 if_python3.pro \
1961 if_ruby.pro \ 1961 if_ruby.pro \
1962 if_xcmdsrv.pro \ 1962 if_xcmdsrv.pro \
1963 indent.pro \ 1963 indent.pro \
1964 insexpand.pro \ 1964 insexpand.pro \
1965 job.pro \
1965 json.pro \ 1966 json.pro \
1966 list.pro \ 1967 list.pro \
1967 locale.pro \ 1968 locale.pro \
1968 main.pro \ 1969 main.pro \
1969 map.pro \ 1970 map.pro \
3350 $(CCC) -o $@ indent.c 3351 $(CCC) -o $@ indent.c
3351 3352
3352 objects/insexpand.o: insexpand.c 3353 objects/insexpand.o: insexpand.c
3353 $(CCC) -o $@ insexpand.c 3354 $(CCC) -o $@ insexpand.c
3354 3355
3356 objects/job.o: job.c
3357 $(CCC) -o $@ job.c
3358
3355 objects/json.o: json.c 3359 objects/json.o: json.c
3356 $(CCC) -o $@ json.c 3360 $(CCC) -o $@ json.c
3357 3361
3358 objects/json_test.o: json_test.c 3362 objects/json_test.o: json_test.c
3359 $(CCC) -o $@ json_test.c 3363 $(CCC) -o $@ json_test.c
4198 proto.h errors.h globals.h gui_at_sb.h 4202 proto.h errors.h globals.h gui_at_sb.h
4199 objects/gui_at_fs.o: gui_at_fs.c vim.h protodef.h auto/config.h feature.h \ 4203 objects/gui_at_fs.o: gui_at_fs.c vim.h protodef.h auto/config.h feature.h \
4200 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4204 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4201 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4205 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4202 proto.h errors.h globals.h gui_at_sb.h 4206 proto.h errors.h globals.h gui_at_sb.h
4207 objects/job.o: job.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4208 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4209 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4210 proto.h errors.h globals.h
4203 objects/json_test.o: json_test.c main.c vim.h protodef.h auto/config.h feature.h \ 4211 objects/json_test.o: json_test.c main.c vim.h protodef.h auto/config.h feature.h \
4204 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4212 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4205 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4213 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4206 proto.h errors.h globals.h json.c 4214 proto.h errors.h globals.h json.c
4207 objects/kword_test.o: kword_test.c main.c vim.h protodef.h auto/config.h \ 4215 objects/kword_test.o: kword_test.c main.c vim.h protodef.h auto/config.h \