diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 18 | ||||
-rw-r--r-- | src/true.c | 1 |
3 files changed, 21 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1cd4d4c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin/ +.ccls-cache/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..03de33b --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +CC := gcc +CFLAGS := -Wall -Wextra -std=c11 -O2 +LDFLAGS := + +SOURCES := $(wildcard src/*.c) +HEADERS := $(wildcard src/*.h) +TARGETS := $(patsubst src/%.c,bin/%,$(SOURCES)) + +.PHONY: all clean + +all: $(TARGETS) + +clean: + rm -f $(TARGETS) + +$(TARGETS): bin/%: src/%.c $(HEADERS) + @mkdir -p $(dir $@) + $(CC) $(CFLAGS) -o $@ $< diff --git a/src/true.c b/src/true.c new file mode 100644 index 0000000..237c8ce --- /dev/null +++ b/src/true.c @@ -0,0 +1 @@ +int main() {} |