Mercurial > vim
view src/Make_morph.mak @ 15969:9cc42db77a54 v8.1.0990
patch 8.1.0990: floating point exception with "%= 0" and "/= 0"
commit https://github.com/vim/vim/commit/e21c1580b7acb598a6e3c38565434fe5d0e2ad7a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 2 11:57:09 2019 +0100
patch 8.1.0990: floating point exception with "%= 0" and "/= 0"
Problem: Floating point exception with "%= 0" and "/= 0".
Solution: Avoid dividing by zero. (Dominique Pelle, closes https://github.com/vim/vim/issues/4058)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 02 Mar 2019 12:00:06 +0100 |
parents | a6ca8cf07a98 |
children | 570a296aa0b4 |
line wrap: on
line source
# # Makefile for VIM, using MorphOS SDK (gcc 2.95.3) # CFLAGS = -c \ -pipe \ -O2 \ -Wall \ \ -DNO_ARP \ -DUSE_TMPNAM \ \ -I proto \ \ -noixemul PRG = Vim LIBS = -noixemul -s CC = gcc LD = gcc OBJDUMP = objdump RM = rm .c.o: ${CC} ${CFLAGS} $< -o $@ SRC = arabic.c \ autocmd.c \ blowfish.c \ buffer.c \ charset.c \ crypt.c \ crypt_zip.c \ dict.c \ diff.c \ digraph.c \ edit.c \ eval.c \ evalfunc.c \ ex_cmds.c \ ex_cmds2.c \ ex_docmd.c \ ex_eval.c \ ex_getln.c \ fileio.c \ findfile.c \ fold.c \ getchar.c \ hardcopy.c \ hashtab.c \ indent.c \ json.c \ list.c \ main.c \ mark.c \ mbyte.c \ memfile.c \ memline.c \ menu.c \ message.c \ misc1.c \ misc2.c \ move.c \ normal.c \ ops.c \ option.c \ os_amiga.c \ popupmnu.c \ quickfix.c \ regexp.c \ screen.c \ search.c \ sha256.c \ sign.c \ spell.c \ spellfile.c \ syntax.c \ tag.c \ term.c \ ui.c \ undo.c \ userfunc.c \ version.c \ window.c \ OBJ = $(SRC:.c=.o) $(PRG): $(OBJ) ${LD} -o $(PRG) $(OBJ) $(LIBS) dump: $(PRG) $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s clean: $(RM) -fv $(OBJ) $(PRG) $(PRG).s