From cf385656e7793773e62b496b6229c117c4347ee8 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 3 Jan 2021 22:59:20 +0100 Subject: Strange --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3