view src/tee/Makefile @ 8251:989ac3aed1ef v7.4.1418

commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 25 20:56:01 2016 +0100 patch 7.4.1418 Problem: job_stop() on MS-Windows does not really stop the job. Solution: Make the default to stop the job forcefully. (Ken Takata) Make MS-Windows and Unix more similar.
author Christian Brabandt <cb@256bit.org>
date Thu, 25 Feb 2016 21:00:04 +0100
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