diff options
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f4e475c --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +CC=gcc -Wall -Werror -pedantic -std=c99 + +all: + + + +%.o:%.c + $(CC) -c -o $@ $< + +clean: + rm -f *.o
\ No newline at end of file |