blob: f6e91358fbf90d4aa9123f27d2532940c61160f3 [file] [log] [blame]
K.Takata5bc13452022-09-09 10:52:47 +01001# A very (if not the most) simplistic Makefile for MS-Windows and OS/2
2
3CC=gcc
4CFLAGS=-O2 -fno-strength-reduce
5
6ifneq (sh.exe, $(SHELL))
7DEL = rm -f
8else
9DEL = del
10endif
11
12tee.exe: tee.o
13 $(CC) $(CFLAGS) -s -o $@ $<
14
15tee.o: tee.c
16 $(CC) $(CFLAGS) -c $<
17
18clean:
19 - $(DEL) tee.o
20 - $(DEL) tee.exe
21