We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c29943 commit 833e5daCopy full SHA for 833e5da
2 files changed
src/tee/Makefile
@@ -3,13 +3,19 @@
3
CC=gcc
4
CFLAGS=-O2 -fno-strength-reduce
5
6
+ifneq (sh.exe, $(SHELL))
7
+DEL = rm
8
+else
9
+DEL = del
10
+endif
11
+
12
tee.exe: tee.o
13
$(CC) $(CFLAGS) -s -o $@ $<
14
15
tee.o: tee.c
16
$(CC) $(CFLAGS) -c $<
17
18
clean:
- - del tee.o
- - del tee.exe
19
+ - $(DEL) tee.o
20
+ - $(DEL) tee.exe
21
src/version.c
@@ -792,6 +792,8 @@ static char *(features[]) =
792
793
static int included_patches[] =
794
{ /* Add new patch number below this line */
795
+/**/
796
+ 500,
797
/**/
798
499,
799
0 commit comments