Hazard3/test/sim/rvcpp/Makefile

17 lines
281 B
Makefile
Raw Normal View History

2021-05-21 09:34:16 +08:00
SRCS=$(wildcard *.cpp)
EXECUTABLE:=rvcpp
.SUFFIXES:
.PHONY: all clean tb
2021-05-21 09:34:16 +08:00
all: $(EXECUTABLE)
$(EXECUTABLE): $(SRCS) $(wildcard include/*.h)
2024-06-02 17:18:40 +08:00
g++ -std=c++17 -O3 -Wall -Wextra -I include $(SRCS) -o $(EXECUTABLE)
# To match tb_cxxrtl/Makefile:
tb: all
2021-05-21 09:34:16 +08:00
clean:
2023-03-22 05:54:04 +08:00
rm -f $(EXECUTABLE)