You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
156 B
Makefile

make: ex9.c
make ex9 && make ex9gnu11
ex9: ex9.c
gcc -Wall -std=c11 -o ex9 ex9.c
ex9gnu11: ex9.c
gcc -Wall -std=gnu11 -o ex9gnu11 ex9.c && rm ex9gnu11