7 lines
118 B
Makefile
7 lines
118 B
Makefile
|
SOURCES := $(shell find . -name "*.sv")
|
||
|
|
||
|
all: ablebash.jar
|
||
|
|
||
|
ablebash.jar: $(SOURCES)
|
||
|
silver -I src ablebash ablebash
|