Compare commits

...

2 commits

Author SHA1 Message Date
Imbus
aa013fa349 Silence stuff for now 2025-09-07 21:57:58 +02:00
Imbus
d1044a94a1 Build subdirs with 'make sub' 2025-09-07 21:57:49 +02:00

View file

@ -1,3 +1,5 @@
.SILENT:
CC := gcc
CFLAGS := -Wall -Wextra -O2
@ -20,6 +22,9 @@ ELF := $(SRC:.c=.elf)
all: $(ELF)
sub:
@-find . -mindepth 1 -maxdepth 1 -type d -exec make --no-print-directory -C {} \;
tags:
ctags -R .
@ -32,5 +37,6 @@ format:
clean:
@echo "Cleaning up..."
@rm -rf $(OBJ) $(ELF) *.json .cache
@find . -mindepth 1 -maxdepth 1 -type d -exec make --no-print-directory -C {} clean \;
.PHONY: format