Annotation of rpl/rplcas/Makefile.in, revision 1.58
1.1 bertrand 1: srcdir=@srcdir@
2: top_builddir=@abs_top_builddir@
1.12 bertrand 3: CFLAGS=@CFLAGS@
4: CXXFLAGS=@CXXFLAGS@
5: LDFLAGS=@LDFLAGS@
1.25 bertrand 6: OBJEXT=@OBJEXT@
1.12 bertrand 7:
1.39 bertrand 8: .PHONY: configure clean distclean
1.3 bertrand 9:
1.7 bertrand 10: all: lib/librplcas.a
1.2 bertrand 11:
1.25 bertrand 12: lib/@LIB_PREFIX@gmp.a:
1.1 bertrand 13: if [ ! -d @GMP@ ]; then \
14: mkdir @GMP@; \
15: fi
16: if [ ! -f @GMP@/config.log ]; then \
1.12 bertrand 17: (cd @GMP@ && \
1.13 bertrand 18: CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
1.10 bertrand 19: ../$(srcdir)/@GMP@/configure --with-readline=no \
1.49 bertrand 20: --host=@HOST@ --enable-cxx \
1.4 bertrand 21: --disable-shared --enable-static \
22: --prefix=$(top_builddir)/rplcas); \
1.1 bertrand 23: fi
1.16 bertrand 24: $(MAKE) -C @GMP@ $(AM_MAKEFLAGS) all && \
25: $(MAKE) -C $(AM_MAKEFLAGS) @GMP@ install
1.3 bertrand 26:
1.25 bertrand 27: lib/@LIB_PREFIX@mpfr.a: lib/@LIB_PREFIX@gmp.a
1.2 bertrand 28: if [ ! -d @MPFR@ ]; then \
29: mkdir @MPFR@ ; \
30: fi
1.1 bertrand 31: if [ ! -f @MPFR@/config.log ]; then \
1.28 bertrand 32: if [ @BUILD@ = @HOST@ ]; then \
33: (cd @MPFR@ && \
34: CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
35: ../$(srcdir)/@MPFR@/configure \
36: --with-gmp=$(top_builddir)/rplcas \
37: --disable-shared --enable-static \
38: --prefix=$(top_builddir)/rplcas); \
39: else \
40: (cd @MPFR@ && \
41: CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
42: ../$(srcdir)/@MPFR@/configure \
43: --host=@HOST@ \
44: --with-gmp=$(top_builddir)/rplcas \
45: --disable-shared --enable-static \
46: --prefix=$(top_builddir)/rplcas); \
47: fi; \
1.1 bertrand 48: fi
1.16 bertrand 49: $(MAKE) -C @MPFR@ $(AM_MAKEFLAGS) all && \
50: $(MAKE) -C @MPFR@ $(AM_MAKEFLAGS) install
1.3 bertrand 51:
1.44 bertrand 52: lib/@LIB_PREFIX@mpfi.a: lib/@LIB_PREFIX@gmp.a lib/@LIB_PREFIX@mpfr.a
53: if [ ! -d @MPFI@ ]; then \
54: mkdir @MPFI@ ; \
55: fi
56: if [ ! -f @MPFI@/config.log ]; then \
57: if [ @BUILD@ = @HOST@ ]; then \
58: (cd @MPFI@ && \
59: CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
60: ../$(srcdir)/@MPFI@/configure \
61: --with-gmp=$(top_builddir)/rplcas \
62: --with-mpfr=$(top_builddir)/rplcas \
63: --disable-shared --enable-static \
64: --prefix=$(top_builddir)/rplcas); \
65: else \
66: (cd @MPFI@ && \
67: CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
68: ../$(srcdir)/@MPFI@/configure \
69: --host=@HOST@ \
70: --with-gmp=$(top_builddir)/rplcas \
71: --with-mpfr=$(top_builddir)/rplcas \
72: --disable-shared --enable-static \
73: --prefix=$(top_builddir)/rplcas); \
74: fi; \
75: fi
76: $(MAKE) -C @MPFI@ $(AM_MAKEFLAGS) all && \
77: $(MAKE) -C @MPFI@ $(AM_MAKEFLAGS) install
78:
1.18 bertrand 79: lib/ntl.a:
1.28 bertrand 80: if [ @BUILD@ = @HOST@ ]; then \
81: (cd @NTL@/src && ./configure GMP_PREFIX=$(top_builddir)/rplcas \
1.47 bertrand 82: SHARED=off CXXFLAGS="$(CXXFLAGS)"); \
1.28 bertrand 83: else \
84: (cd @NTL@/src && ./configure GMP_PREFIX=$(top_builddir)/rplcas \
85: SHARED=off CC=@HOST@-gcc CXX=@HOST@-g++ \
1.47 bertrand 86: CXXFLAGS="@SYSROOT@ $(CXXFLAGS)" \
1.28 bertrand 87: LDFLAGS="-L@SYSROOT2@/usr/lib"); \
88: fi
1.30 bertrand 89: (cd @NTL@/src && \
1.32 bertrand 90: if [ -z '$(make -v | grep "^GNU Make")' -a $(shell uname) != Linux ]; \
91: then \
1.30 bertrand 92: sed 's/make /gmake /g' makefile > makefile2 && \
93: \mv -f makefile2 makefile && \
94: sed 's/make /gmake /g' WizardAux > WizardAux2 && \
1.32 bertrand 95: \mv -f WizardAux2 WizardAux; \
1.30 bertrand 96: fi && \
97: $(MAKE) $(AM_MAKEFLAGS) -f makefile)
1.4 bertrand 98: cp @NTL@/src/ntl.a lib/ntl.a
99: cp @NTL@/src/ntl.a lib/ntl.a
100: cp -R @NTL@/include/NTL include
1.3 bertrand 101:
1.25 bertrand 102: lib/libcocoa.a: lib/@LIB_PREFIX@gmp.a
1.54 bertrand 103: for i in $(shell find @COCOA@ -name "*" -exec grep /bin/bash {} /dev/null \; | cut -d: -f1); \
1.53 bertrand 104: do \
1.50 bertrand 105: sed '1,1s/^#! *\/bin\/bash/#!@BASH@/g' $$i > $$i.2; \
1.58 ! bertrand 106: sed '1,$$s/SHELL=\/bin\/bash/SHELL=@BASH@/g' $$i.2 > $$i; \
! 107: \rm -f $$i.2; \
1.50 bertrand 108: chmod 755 $$i; \
1.54 bertrand 109: done
1.57 bertrand 110: if [ @BUILD@ = @HOST@ ]; then \
111: (cd @COCOA@ && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
112: ./configure --with-libgmp=../lib/libgmp.a \
113: --with-libgsl=../../tools/@GSL@/.libs/libgsl.a); \
114: else \
115: (cd @COCOA@ && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
116: ./configure --with-libgmp=../lib/libgmp.a \
117: --with-cxx=@HOST@-g++ \
118: --with-cxxflags="@SYSROOT@ $(CXXFLAGS)" \
119: --with-libgsl=../../tools/@GSL@/.libs/libgsl.a); \
120: fi; \
1.16 bertrand 121: $(MAKE) -C @COCOA@ $(AM_MAKEFLAGS) library
1.4 bertrand 122: cp @COCOA@/lib/libcocoa.a lib/libcocoa.a
123: cp -R @COCOA@/include/CoCoA include
1.3 bertrand 124:
1.25 bertrand 125: lib/libpari.a: lib/@LIB_PREFIX@gmp.a
1.4 bertrand 126: if [ ! -f @PARI@/configured ]; then \
1.28 bertrand 127: if [ @BUILD@ = @HOST@ ]; then \
128: (cd @PARI@ && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
129: LDFLAGS="$(LDFLAGS)" \
130: ./Configure --prefix=$(top_builddir)/rplcas \
131: --with-gmp=../lib/libgmp.a \
132: --without-readline --graphic=none -s); \
133: else \
134: (cd @PARI@ && CC=@HOST@-gcc LD=@HOST@-ld \
135: CFLAGS="@SYSROOT@ $(CFLAGS)" \
136: CXXFLAGS="$(CXXFLAGS)" \
137: LDFLAGS="-L@SYSROOT2@/usr/lib $(LDFLAGS)" \
138: ./Configure --prefix=$(top_builddir)/rplcas \
139: --with-gmp=../lib/libgmp.a \
140: --without-readline --graphic=none -s); \
141: fi; \
1.46 bertrand 142: (cd @PARI@ && \
143: sed -i -e 's/perl/perl -I./g' \
144: $$(find . -maxdepth 1 -name "O*")/Makefile); \
1.4 bertrand 145: touch @PARI@/configured; \
146: fi
1.28 bertrand 147: $(MAKE) -C @PARI@ $(AM_MAKEFLAGS) gp && \
1.16 bertrand 148: $(MAKE) -C @PARI@ $(AM_MAKEFLAGS) install
1.4 bertrand 149:
1.25 bertrand 150: lib/@LIB_PREFIX@giac.a: lib/@LIB_PREFIX@gmp.a lib/@LIB_PREFIX@mpfr.a lib/ntl.a \
1.44 bertrand 151: lib/libcocoa.a lib/libpari.a lib/@LIB_PREFIX@mpfi.a
1.4 bertrand 152: if [ ! -d @GIAC@ ]; then \
153: mkdir @GIAC@ ; \
154: fi
1.37 bertrand 155: if [ @BUILD@ = @HOST@ ]; then \
156: (cd @GIAC@ && \
157: CXX=@CXX@ \
158: CPPFLAGS="-I$(top_builddir)/rplcas/include -I$(top_builddir)/tools/@GSL@ $(CPPFLAGS)" \
159: CXXFLAGS="$(CXXFLAGS) -fpermissive" \
1.44 bertrand 160: LDFLAGS="$(top_builddir)/rplcas/lib/libpari.a $(top_builddir)/rplcas/lib/ntl.a $(top_builddir)/rplcas/lib/libcocoa.a $(top_builddir)/tools/@GSL@/.libs/libgsl.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@gmp.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfr.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfi.a $(LDFLAGS)" \
1.37 bertrand 161: ../$(srcdir)/@GIAC@/configure --prefix=$(top_builddir)/rplcas \
1.43 bertrand 162: --enable-pari \
163: --enable-ntl \
164: --enable-cocoa \
165: --enable-gsl \
1.37 bertrand 166: --disable-shared --enable-static \
167: --disable-gui --without-x); \
168: else \
169: (cd @GIAC@ && \
170: CPPFLAGS="-I$(top_builddir)/rplcas/include -I$(top_builddir)/tools/@GSL@ @SYSROOT@ $(CPPFLAGS)" \
171: CXXFLAGS="$(CXXFLAGS) -fpermissive" \
1.56 bertrand 172: LDFLAGS="$(top_builddir)/rplcas/lib/libpari.a $(top_builddir)/rplcas/lib/ntl.a $(top_builddir)/rplcas/lib/libcocoa.a $(top_builddir)/tools/@GSL@/.libs/libgsl.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@gmp.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfr.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfi.a $(LDFLAGS) $(LIBGIAC)" \
1.37 bertrand 173: ../$(srcdir)/@GIAC@/configure --prefix=$(top_builddir)/rplcas \
174: --host=@HOST@ \
1.43 bertrand 175: --enable-pari \
176: --enable-ntl \
177: --enable-cocoa \
178: --enable-gsl \
1.37 bertrand 179: --disable-shared --enable-static \
180: --disable-gui --without-x); \
181: fi; \
182: (cd @GIAC@/src && \
183: mv -f config.h config.h.orig && \
184: sed -e 's/#define HAVE_LIBPNG 1//' config.h.orig | \
185: sed -e 's/#define HAVE_PNG_H 1//' > config.h && \
186: rm -f config.h.orig); \
1.44 bertrand 187: (cd @GIAC@/src && \
188: mv -f Makefile Makefile.orig && \
189: sed -e 's/-lntl//' Makefile.orig | \
190: sed -e 's/-lgmp//' | \
191: sed -e 's/-lmpfr//' > Makefile && \
192: rm -f Makefile.orig); \
1.37 bertrand 193: $(MAKE) -C @GIAC@ $(AM_MAKEFLAGS)
1.23 bertrand 194: if [ x$(srcdir) != x. ]; then \
195: for i in mkinstalldirs xcas.xpm xcas.desktop xcas.applications; \
196: do cp $(srcdir)/@GIAC@/$$i @GIAC@/$$i; done; \
1.38 bertrand 197: cp -R $(srcdir)/@GIAC@/icons @GIAC@; \
1.23 bertrand 198: fi
1.37 bertrand 199: $(MAKE) -C @GIAC@ $(AM_MAKEFLAGS) install
1.1 bertrand 200:
1.25 bertrand 201: lib/librplcas.a: lib/@LIB_PREFIX@giac.a lib/@LIB_PREFIX@gmp.a \
1.44 bertrand 202: lib/@LIB_PREFIX@mpfr.a lib/ntl.a lib/libcocoa.a lib/libpari.a \
203: lib/@LIB_PREFIX@mpfi.a
1.7 bertrand 204: if [ ! -d tmp ]; then mkdir tmp; fi
1.45 bertrand 205: for i in `ar t lib/@LIB_PREFIX@giac.a | grep a$$`; \
206: do ar d lib/@LIB_PREFIX@giac.a $$i; \
207: done
1.26 bertrand 208: @(cd tmp && n=0 && \
1.25 bertrand 209: rm -f * && \
210: echo Building standalone librplcas.a; \
211: for i in ../lib/@LIB_PREFIX@gmp.a \
212: ../lib/@LIB_PREFIX@mpfr.a \
1.44 bertrand 213: ../lib/@LIB_PREFIX@mpfi.a \
1.25 bertrand 214: ../lib/libcocoa.a \
215: ../lib/libpari.a \
216: ../lib/ntl.a \
217: ../lib/@LIB_PREFIX@giac.a; \
218: do echo Extracting $$i; ar x $$i; \
219: for j in `ar t $$i`; \
220: do cp -f $$j $$n-$$j; \
221: rm -f $$j; \
222: done; \
223: n=`expr $$n + 1`; \
224: done; \
225: L="start"; \
226: while test -n "$$L"; \
227: do \
228: echo -n "Remaining files "; \
229: find . -name "*.$(OBJEXT)" | wc -l; \
230: L=""; j=0; \
231: for i in `find . -name "*.$(OBJEXT)"`; \
232: do \
233: k=`echo $$i | wc -c`; \
234: j=`expr $$j + $$k + 1`; \
235: if test $$j -le 8000; then \
236: L="$$L $$i"; \
237: else \
238: break; \
239: fi; \
240: done; \
241: if test -n "$$L"; then \
242: echo -n "Adding files to librplcas.a archive... "; \
1.42 bertrand 243: ar cr ../lib/librplcas.a $$L; \
1.25 bertrand 244: rm -f $$L; \
245: echo "done"; \
246: fi; \
247: done; \
248: echo Archive created; \
249: ar s ../lib/librplcas.a; \
250: if [ @OS@ != OS2 -a @OS@ != Darwin ]; then \
251: echo Stripping librplcas.a && strip -d ../lib/librplcas.a; \
252: fi;)
1.45 bertrand 253: rmdir tmp
1.7 bertrand 254:
1.14 bertrand 255: install:
1.1 bertrand 256:
1.24 bertrand 257: uninstall:
258:
1.3 bertrand 259: clean:
1.8 bertrand 260: \rm -f $(top_builddir)/rplcas/lib/lib*
1.2 bertrand 261:
262: distdir:
CVSweb interface <joel.bertrand@systella.fr>