This repository has been archived on 2021-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
msh/makefile

9 lines
114 B
Makefile
Raw Normal View History

2021-09-14 19:00:19 +02:00
.POSIX:
2021-09-15 14:39:02 +02:00
CFLAGS = -Wall -Werror -pedantic -Wextra -std=c11 -O0 -g
2021-09-14 19:00:19 +02:00
2021-09-15 14:39:02 +02:00
msh: msh.c fstr.c err.c
2021-09-14 19:00:19 +02:00
clean:
rm -f msh *.o