Makefile 211 Bytes
Newer Older
1
SUBDIRS = opers sva vhdl
Clifford Wolf committed
2 3 4 5 6 7 8 9 10 11 12 13

all: $(addsuffix /.stamp,$(SUBDIRS))
	touch .stamp

%/.stamp:
	$(MAKE) -C $(dir $@)

clean:
	+for subdir in $(SUBDIRS); do make -C $$subdir clean; done
	rm -f .stamp

.PHONY: all clean