-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile
43 lines (34 loc) · 983 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#==================================================================================
# File : Makefile to compile, simulate Verilog modules
# Developer : Mitu Raj
# Date : July-2024
# Dependencies : All source files & VCD & sim directory should be in the same dir
# Tools reqd = iverilog + gtkwave
#==================================================================================
.ONESHELL:
# DIR paths
SIM_DIR = $(shell pwd)/sim
# Default
VVP = test_apb
# Compile
compile:
@mkdir -p $(SIM_DIR)
@echo "| INFO: Compiling all source files..."
iverilog -g2012 -o $(SIM_DIR)/$(VVP).vvp *.sv
# Simulate
sim:
@echo "| INFO: Launching simulation..."
vvp $(SIM_DIR)/$(VVP).vvp
@mv *.vcd $(SIM_DIR)
# Run
runall: compile sim
# Clean
clean:
@rm -rf $(SIM_DIR)/*
@rm -rf *.vcd
echo "| INFO: Cleaned sim directory!"
# Full clean
full_clean: clean
@rm -rf $(SIM_DIR)
echo "| INFO: Wiped off all!"
.PHONY: compile sim runall clean full_clean