mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 05:00:12 +00:00
386299d1f4
* Makefile: move over to gcc for preproc and ditch cpp * INSTALL: rewrite INSTALL * README: add CI badge * Makefile: make tools build before anything else
12 lines
182 B
Makefile
12 lines
182 B
Makefile
|
|
MAKEFLAGS += --no-print-directory
|
|
|
|
TOOLDIRS := $(filter-out tools/agbcc tools/binutils,$(wildcard tools/*))
|
|
|
|
.PHONY: all $(TOOLDIRS)
|
|
|
|
all: $(TOOLDIRS)
|
|
|
|
$(TOOLDIRS):
|
|
@$(MAKE) -C $@
|