summaryrefslogtreecommitdiffstats
path: root/translated_examples/Makefile
blob: 88f508116d04829be906d194d6631fb4324cbea3 (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,$(wildcard *.v), echo "Checking: $(VERILOG)";\
	iverilog -Wall -y . -t null $(VERILOG);)
endif
OpenPOWER on IntegriCloud