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