]> git.pld-linux.org Git - packages/psplot.git/blame - psplot-Makefile
- added gfortran patch and adjusted Makefile for gfortran compiler
[packages/psplot.git] / psplot-Makefile
CommitLineData
f1931c9e
RW
1F77=g77
2AR=ar
3RANLIB=ranlib
4
5all: libpsplot.so libpsplot.a
6
7psplot.o: psplot.txt
eb86c378 8 $(F77) -x f77 psplot.txt -c $(CFLAGS) -fPIC
f1931c9e
RW
9
10libpsplot.so: psplot.o
eb86c378
JB
11 $(F77) $(LDFLAGS) -shared -Wl,-soname,libpsplot.so.0 psplot.o $(CFLAGS) -o libpsplot.so.0
12 ln -sf libpsplot.so.0 libpsplot.so
f1931c9e
RW
13
14libpsplot.a: psplot.o
eb86c378
JB
15 $(AR) r libpsplot.a psplot.o
16 $(RANLIB) libpsplot.a
This page took 0.047363 seconds and 4 git commands to generate.