blob: 1d1399d579756effe4bbee631af8c9f719031707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/make
TEMP = ../temp/vhdl
all:
ifneq ($(shell which ghdl),)
@mkdir -p $(TEMP)
@echo "##### Checking examples with GHDL ##############################"
ghdl -a --workdir=$(TEMP) *.vhd
endif
clean:
rm -fr $(TEMP)
|