From db55ea657e1edcb5d7da3dd90e4dc6b7643bbfe0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 19 Apr 2021 22:38:59 +0200 Subject: 8051 is awesome --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.2.3