cpu/Makefile

21 lines
336 B
Makefile
Raw Normal View History

2021-07-02 01:28:23 -06:00
BUILD_DIR = build
SOURCE_V = $(wildcard hdl/*.v)
TESTBENCH_V = $(wildcard hdl/tb/*.v)
all: sim
$(BUILD_DIR):
mkdir -p $(BUILD_DIR)
$(BUILD_DIR)/tb.out: $(SOURCE_V) $(TESTBENCH_V) | $(BUILD_DIR)
iverilog $^ -o $@
sim: $(BUILD_DIR)/tb.out
cd $(BUILD_DIR) && ./tb.out
clean:
rm -rf $(BUILD_DIR)
.SECONDARY:
.PHONY: all clean sim