ssp/makefile

11 lines
184 B
Makefile
Raw Normal View History

2020-12-10 20:09:42 +01:00
install:
cp -r ./include/ss/ /usr/local/include/
uninstall:
rm -rf /usr/local/include/ss/*.hpp
2020-12-10 20:09:42 +01:00
test:
cd test && $(MAKE) -j4 && $(MAKE) test && $(MAKE) clean
.PHONY: install test