mirror of https://github.com/XS-MLVP/picker.git
10 lines
322 B
Makefile
10 lines
322 B
Makefile
.PHONY: default
|
|
default:
|
|
@cp cpp/dut.cpp ${TARGET}/${TARGET}.cpp
|
|
@cp cpp/dut.hpp ${TARGET}/${TARGET}.hpp
|
|
@cp cpp/example.cpp ${TARGET}/example.cpp
|
|
@cp cpp/cmake/${SIMULATOR}.cmake ${TARGET}/${PROJECT}.cmake
|
|
@cp cpp/CMakeLists.txt ${TARGET}/CMakeLists.txt
|
|
@cp cpp/Makefile ${TARGET}/Makefile
|
|
@cd ${TARGET} && make
|