Moved install location
This commit is contained in:
parent
6eeadea52f
commit
28bc37cef2
2 changed files with 6 additions and 6 deletions
8
Makefile
8
Makefile
|
|
@ -45,12 +45,12 @@ shared: $(OBJ_SHARED)
|
||||||
$(CC) -shared -o libztd.so $^
|
$(CC) -shared -o libztd.so $^
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
mv libztd.a libztd.so /usr/local/lib
|
mv libztd.a libztd.so /usr/lib
|
||||||
cp -r include /usr/local/include/ztd
|
cp -r include /usr/include/ztd
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm /usr/local/lib/libztd.*
|
rm /usr/lib/libztd.*
|
||||||
rm -rd /usr/local/include/ztd
|
rm -rd /usr/include/ztd
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm $(ODIR)/*.o $(ODIR_SHARED)/*.o
|
rm $(ODIR)/*.o $(ODIR_SHARED)/*.o
|
||||||
|
|
|
||||||
|
|
@ -14,5 +14,5 @@ Use ``doxygen`` to generate HTML documentation files
|
||||||
## Installing
|
## Installing
|
||||||
|
|
||||||
``sudo make install``
|
``sudo make install``
|
||||||
Moves ``libztd.a`` and ``libztd.so`` to ``/usr/local/lib``
|
Moves ``libztd.a`` and ``libztd.so`` to ``/usr/lib``
|
||||||
Copies headers to ``/usr/local/include/ztd``
|
Copies headers to ``/usr/include/ztd``
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue