.PHONY: all run clean
export TOP_DIR  = $(shell pwd)
export ROM_FILE = romh.dat
all:run

run:
	make -C syn all

clean:
	make -C syn clean
