9 lines
101 B
Makefile
9 lines
101 B
Makefile
.POSIX:
|
|
|
|
CFLAGS = -Wall -Werror -pedantic -Wextra -std=c11
|
|
|
|
msh: msh.c fstr.c
|
|
|
|
clean:
|
|
rm -f msh *.o
|