diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-30 18:14:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-30 18:14:57 +0200 |
commit | 041c7107f23d3b49ab62c1d7e36af90421db8b63 (patch) | |
tree | f21e0e6114da8949c9d91f727d8df2e0754ce064 /src/Makefile | |
parent | 06b7b58455f9c09be3d1c36d174ffbfdf4efcd79 (diff) | |
download | vim-git-041c7107f23d3b49ab62c1d7e36af90421db8b63.tar.gz |
patch 8.2.0849: BeOS code is not maintained and probably unusedv8.2.0849
Problem: BeOS code is not maintained and probably unused.
Solution: Remove the BeOS code. (Emir Sari, closes #5817)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/Makefile b/src/Makefile index c4bce687d..e8f84465c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2026,7 +2026,7 @@ PRO_AUTO = \ RSRC_DIR = os_mac_rsrc PRO_MANUAL = os_amiga.pro os_win32.pro \ - os_mswin.pro winclip.pro os_beos.pro os_vms.pro $(PERL_PRO) + os_mswin.pro winclip.pro os_vms.pro $(PERL_PRO) # Default target is making the executable and tools all: $(VIMTARGET) $(TOOLS) languages $(GUI_BUNDLE) @@ -2193,10 +2193,6 @@ winclip.pro: winclip.c $(CPROTO) -DWIN32 -UHAVE_CONFIG_H $< > proto/$@ echo "/* vim: set ft=c : */" >> proto/$@ -os_beos.pro: os_beos.c - $(CPROTO) -D__BEOS__ -UHAVE_CONFIG_H $< > proto/$@ - echo "/* vim: set ft=c : */" >> proto/$@ - os_vms.pro: os_vms.c # must use os_vms_conf.h for auto/config.h mv auto/config.h auto/config.h.save @@ -3394,9 +3390,6 @@ objects/option.o: option.c optiondefs.h objects/optionstr.o: optionstr.c $(CCC_NF) $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(PYTHON3_CFLAGS) $(RUBY_CFLAGS) $(TCL_CFLAGS) $(ALL_CFLAGS) -o $@ optionstr.c -objects/os_beos.o: os_beos.c - $(CCC) -o $@ os_beos.c - objects/os_qnx.o: os_qnx.c $(CCC) -o $@ os_qnx.c |