mirror of
https://github.com/Silicon1602/srdl2sv.git
synced 2024-12-22 06:58:41 +00:00
12 lines
134 B
Makefile
12 lines
134 B
Makefile
|
ALL_DIRS = $(shell ls -d */)
|
||
|
|
||
|
.PHONY: clean $(ALL_DIRS)
|
||
|
|
||
|
default: $(ALL_DIRS)
|
||
|
|
||
|
$(ALL_DIRS):
|
||
|
make -C $@
|
||
|
|
||
|
clean:
|
||
|
rm -rf */srdl2sv_out
|