Mercurial > vim
view src/tee/Makefile @ 14194:6fbb8dfb3389 v8.1.0114
patch 8.1.0114: confusing variable name
commit https://github.com/vim/vim/commit/0119a59ffdfb21cf1c0a56e7ed6105e875150163
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 24 23:53:28 2018 +0200
patch 8.1.0114: confusing variable name
Problem: Confusing variable name.
Solution: Rename new_ts to new_vts_array. Change zero to NULL.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 25 Jun 2018 00:00:07 +0200 |
parents | 3fc0f57ecb91 |
children | d95d6580d84b |
line wrap: on
line source
# A very (if not the most) simplistic Makefile for OS/2 CC=gcc CFLAGS=-O2 -fno-strength-reduce tee.exe: tee.o $(CC) $(CFLAGS) -s -o $@ $< tee.o: tee.c $(CC) $(CFLAGS) -c $< clean: - del tee.o - del tee.exe