summaryrefslogtreecommitdiffstats
path: root/translated_examples/Makefile
blob: d5c1b68925fd12e473096577e8b8510beab0194c (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/make

all:
ifneq ($(shell which iverilog),)
	@echo "##### Checking resulting Verilog files with iverilog ###########"
	@$(foreach VERILOG,$(sort $(wildcard *.v)), echo "Checking: $(VERILOG)";\
	iverilog -Wall -y . -t null $(VERILOG);)
endif
OpenPOWER on IntegriCloud