diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e212d1f --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CC = gcc +COBJS = main.o +CFLAGS = -Wall -Wextra -pedantic-errors -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Ofast -lcurl + +all: $(COBJS) + @$(CC) -o mailvin $< $(CFLAGS) + +run: all + @./mailvin + +%.o: %.c + @$(CC) -c -o $@ $< $(CFLAGS) + +clean: + @rm -f *.o |