blob: 9d3d89b68c4e9e781651b50df94715e365effff9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# See LICENSE file for copyright and license details.
PREFIX=/usr/local
INStALL_DIR=${PREFIX}/include
instal:
cp string2.h ${INSTALL_DIR}/string2.h
uninstall:
rm -f ${INSTALL_DIR}/string2.h
|