aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..992b8b2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+SOURCEDIR = src
+BUILDDIR = build
+SOURCES = $(wildcard $(SOURCEDIR)/*.c)
+OBJS = $(patsubst $(SOURCEDIR)/%.c, $(BUILDDIR)/%.o, $(SOURCES))
+
+CC = gcc
+WARNINGS = -Wall -Wextra -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wformat=2 -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -Wswitch-default -Wswitch-enum -Wlogical-op -Wunreachable-code -Wundef -Wold-style-definition -Wvla -pedantic
+CFLAGS = -O3 $(WARNINGS) -I$(SOURCEDIR)/inc/ $(shell pkg-config --cflags --libs gtk+-3.0)
+
+all: $(OBJS)
+ @$(CC) -o ./$(BUILDDIR)/out $^ $(CFLAGS)
+
+clean:
+ @$(RM) -rf $(BUILDDIR)
+
+run: clean all
+ @./$(BUILDDIR)/out
+
+$(BUILDDIR)/%.o: $(SOURCEDIR)/%.c
+ @mkdir -p $(BUILDDIR)
+ @$(CC) -c -o $@ $< $(CFLAGS)