Compare commits
2 commits
bed5c13dc8
...
aa013fa349
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aa013fa349 | ||
|
|
d1044a94a1 |
1 changed files with 6 additions and 0 deletions
6
Makefile
6
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue