Remove .exe suffix in makefile

This commit is contained in:
Yohan Simard 2021-03-23 19:00:42 +01:00
parent f0d455907f
commit a7461e90ef

View file

@ -1,7 +1,7 @@
default : parser
parser : parser.c
gcc -o parser.exe parser.c
gcc -o parser parser.c
parser.c : main.py
@ -9,4 +9,4 @@ parser.c : main.py
python3 main.py > parser.c
clean :
rm -f parser.c parser.exe
rm -f parser.c parser