blob: 12c43d510000351852bd41df1c32e2b473f14d60 [file] [log] [blame]
Bram Moolenaar04c86d22018-10-17 22:45:54 +02001# A very (if not the most) simplistic Makefile for MS-Windows and OS/2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3CC=gcc
4CFLAGS=-O2 -fno-strength-reduce
5
6tee.exe: tee.o
7 $(CC) $(CFLAGS) -s -o $@ $<
8
9tee.o: tee.c
10 $(CC) $(CFLAGS) -c $<
11
12clean:
13 - del tee.o
14 - del tee.exe
15