mirror of
https://github.com/mhowlett/nplot.git
synced 2025-12-08 14:58:46 +00:00
9 lines
199 B
Makefile
9 lines
199 B
Makefile
all:
|
|
(cd lib; make all)
|
|
|
|
install:
|
|
@if test x$$prefix = x; then \
|
|
echo -e "\nError, usage is:\n\n\t make install prefix=INSTALLPREFIX\n"; \
|
|
exit 1; \
|
|
fi;
|
|
(cd lib; make install prefix=$$prefix)
|