We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 880167c commit db9cb43Copy full SHA for db9cb43
Makefile
@@ -16,14 +16,13 @@ debug : LDLIBS+=-lasan
16
debug : all
17
18
flex := flex
19
-ifeq ($(shell uname), Windows)
+ifeq (${OS},Windows_NT)
20
flex := win_flex
21
endif
22
23
# Rule to automatically run flex to create .c files from .lex.
24
.SUFFIXES: .lex
25
.lex.c:
26
- echo "Output of uname is >"$(shell uname)"<"
27
$(flex) -o $@ $<
28
29
# Utility targets are "PHONY" so they'll run even if a file exists
0 commit comments