Remove .exe suffix in makefile
This commit is contained in:
parent
f0d455907f
commit
a7461e90ef
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -1,7 +1,7 @@
|
||||||
default : parser
|
default : parser
|
||||||
|
|
||||||
parser : parser.c
|
parser : parser.c
|
||||||
gcc -o parser.exe parser.c
|
gcc -o parser parser.c
|
||||||
|
|
||||||
|
|
||||||
parser.c : main.py
|
parser.c : main.py
|
||||||
|
|
@ -9,4 +9,4 @@ parser.c : main.py
|
||||||
python3 main.py > parser.c
|
python3 main.py > parser.c
|
||||||
|
|
||||||
clean :
|
clean :
|
||||||
rm -f parser.c parser.exe
|
rm -f parser.c parser
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue