Hazard3/test/sim/rvcpp/Makefile

12 lines
173 B
Makefile
Raw Normal View History

2021-05-21 09:34:16 +08:00
SRCS=$(wildcard *.cpp)
EXECUTABLE:=rvcpp
.SUFFIXES:
.PHONY: all clean
all:
g++ -std=c++17 -O3 -Wall -Wno-parentheses $(SRCS) -o $(EXECUTABLE)
clean:
rm -f (EXECUTABLE)