mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
11 lines
184 B
Makefile
11 lines
184 B
Makefile
install:
|
|
cp -r ./include/ss/ /usr/local/include/
|
|
|
|
uninstall:
|
|
rm -rf /usr/local/include/ss/*.hpp
|
|
|
|
test:
|
|
cd test && $(MAKE) -j4 && $(MAKE) test && $(MAKE) clean
|
|
|
|
.PHONY: install test
|