blob: e1abc0b5ffea4a0fdb9a8cc59aee2e598b7ffaf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $FreeBSD$
all:
make -f Makefile.flib LOCALBASE="${LOCALBASE}"
make -f Makefile.clib
make -f Makefile.bin LOCALBASE="${LOCALBASE}"
make -f Makefile.doc
install:
install -c *.a *.so.5* ${PREFIX}/lib
mkdir -p ${PREFIX}/share/pgplot
install -c grfont.dat rgb.txt pgplot.doc pgplot.html pgplot-routines.tex cpg/cpgplot.doc ${PREFIX}/share/pgplot
install -c cpgplot.h ${PREFIX}/include
install -c Makefile.demo examples/pgdemo*.f cpg/cpgdemo.c ${PREFIX}/share/pgplot
cp pgdispd/aaaread.me ${PREFIX}/share/pgplot/readme.pgdisp
install -c -s pgxwin_server pgdisp ${PREFIX}/bin
|