comparison src/Make_cyg_ming.mak @ 30731:2295ee9c025d v9.0.0700

patch 9.0.0700: there is no real need for a "big" build Commit: https://github.com/vim/vim/commit/25f3a146a0e4c731b8608f4cfbbfdf7a71b2d05e Author: Martin Tournoij <martin@arp242.net> Date: Sat Oct 8 19:26:41 2022 +0100 patch 9.0.0700: there is no real need for a "big" build Problem: There is no real need for a "big" build. Solution: Move common features to "normal" build, less often used features to the "huge" build. (Martin Tournoij, closes #11283)
author Bram Moolenaar <Bram@vim.org>
date Sat, 08 Oct 2022 20:30:05 +0200
parents 101f08b49ed3
children 01aa48ecb9e7
comparison
equal deleted inserted replaced
30730:f4a543b2595c 30731:2295ee9c025d
26 # 26 #
27 # Maintained by Ron Aaron <ronaharon@yahoo.com> et al. 27 # Maintained by Ron Aaron <ronaharon@yahoo.com> et al.
28 # Updated 2014 Oct 13. 28 # Updated 2014 Oct 13.
29 29
30 #>>>>> choose options: 30 #>>>>> choose options:
31 # FEATURES=[TINY | NORMAL | BIG | HUGE] 31 # FEATURES=[TINY | NORMAL | HUGE]
32 # Set to TINY to make a minimal version (no optional features). 32 # Set to TINY to make a minimal version (no optional features).
33 FEATURES=HUGE 33 FEATURES=HUGE
34 34
35 # Set to yes for a debug build. 35 # Set to yes for a debug build.
36 DEBUG=no 36 DEBUG=no
111 else 111 else
112 TERMINAL=no 112 TERMINAL=no
113 endif 113 endif
114 114
115 # Set to yes to enable sound support. 115 # Set to yes to enable sound support.
116 ifneq ($(findstring $(FEATURES),BIG HUGE),) 116 ifneq ($(findstring $(FEATURES),HUGE),)
117 SOUND=yes 117 SOUND=yes
118 else 118 else
119 SOUND=no 119 SOUND=no
120 endif 120 endif
121 121