X-Git-Url: http://git.subgeniuskitty.com/obfuscated-c/.git/blobdiff_plain/aa04a639f5ed07c1de1759db46b3b137a8e359ec..84b619fe679e15972679dc28d550ff85ddb5ef5c:/001/Makefile diff --git a/001/Makefile b/001/Makefile new file mode 100644 index 0000000..7a39a62 --- /dev/null +++ b/001/Makefile @@ -0,0 +1,18 @@ +# Uncomment these lines to use GCC. +CC := gcc +CC_OPTS := -trigraphs -w + +# Uncomment these lines to use Clang. +#CC := cc +#CC_OPTS := -trigraphs -Wno-everything + +################################################################################ + +all: + @$(CC) $(CC_OPTS) -o main main.c + +clean: + @rm -f main main.core + +run: all + @./main