blob: 7419913ccb977713eca9334bfe58002b515631a4 [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
Bram Moolenaar833e5da2018-10-28 15:43:58 +01006ifneq (sh.exe, $(SHELL))
7DEL = rm
8else
9DEL = del
10endif
11
Bram Moolenaar071d4272004-06-13 20:20:40 +000012tee.exe: tee.o
13 $(CC) $(CFLAGS) -s -o $@ $<
14
15tee.o: tee.c
16 $(CC) $(CFLAGS) -c $<
17
18clean:
Bram Moolenaar833e5da2018-10-28 15:43:58 +010019 - $(DEL) tee.o
20 - $(DEL) tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +000021