Annotation of rpl/Makefile.am, revision 1.72

1.26      bertrand    1: SUBDIRS = tools rplsums rpliconv rplawk lapack/blas lapack/lapack rplcas src \
1.5       bertrand    2:        rpltags scripts man doc
1.4       bertrand    3: 
1.25      bertrand    4: include_HEADERS = rplconfig.h
                      5: 
1.4       bertrand    6: EXTRA_DIST = LIMITATIONS Licence_CeCILL_V2-fr.txt Licence_CeCILL_V2-en.txt \
1.65      bertrand    7:        HEADER.in lapack/COPYING lapack/RELEASE autogen.sh \
1.4       bertrand    8:        tests/tests.tar.gz vim/indent/rpl.vim vim/ftplugin/rpl.vim \
                      9:        vim/syntax/rpl.vim examples/obele.rpl examples/appel.tar.gz \
1.42      bertrand   10:        examples/external.tar.gz DEBIAN/control.in \
1.27      bertrand   11:        rplcas/@GMP@.tar.gz rplcas/@MPFR@.tar.gz rplcas/@NTL@.tar.gz \
                     12:        rplcas/@COCOA@.tar.gz rplcas/@PARI@.tar.gz rplcas/@GIAC@.tar.gz
1.1       bertrand   13: 
1.60      bertrand   14: all:
1.69      bertrand   15:    @if [ x"$(shell $(MAKE) -v | grep '^GNU Make')" = x ]; then \
1.60      bertrand   16:        echo; \
                     17:        echo MAKE=$(MAKE); \
                     18:        echo "Please use GNU Make !"; \
                     19:        echo; \
                     20:        false; \
                     21:    fi
                     22:    $(MAKE) all-rpl
                     23: 
1.3       bertrand   24: licences:
1.65      bertrand   25:    cp -f $(top_builddir)/HEADER $(srcdir)
1.29      bertrand   26:    $(MAKE) -C src $@
1.3       bertrand   27: 
1.63      bertrand   28: purge:
1.3       bertrand   29:    for i in @NCURSES@ @READLINE@ @UNITS@ @GSL@ @GPP@ @GNUPLOT_COMPILATION@ \
1.57      bertrand   30:            @FILE@ @ICONV@ @SQLITE@ @SIGSEGV@ @BUILD_OPENMOTIF@; \
1.3       bertrand   31:    do \
1.17      bertrand   32:        rm -rf $(srcdir)/tools/$$i; \
1.63      bertrand   33:        rm -rf $(top_builddir)/tools/$$i; \
1.3       bertrand   34:    done;
1.63      bertrand   35:    for i in @GMP@ @MPFR@ @NTL@ @COCOA@ @PARI@ @GIAC@; \
1.62      bertrand   36:    do \
                     37:        if [ -d $(srcdir)/rplcas/$$i ]; then \
                     38:            rm -rf $(srcdir)/rplcas/$$i; \
                     39:        fi; \
                     40:        if [ -d $(top_builddir)/rplcas/$$i ]; then \
                     41:            rm -rf $(top_builddir)/rplcas/$$i; \
                     42:        fi; \
                     43:    done;
1.63      bertrand   44:    for i in bin lib include share; \
                     45:    do \
                     46:        if [ -d $(top_builddir)/rplcas/$$i ]; then \
                     47:            rm -rf $(top_builddir)/rplcas/$$i; \
                     48:        fi; \
                     49:    done;
1.71      bertrand   50:    test -f $(top_builddir)/tools/openmotif.lib && \
                     51:            rm -f $(top_builddir)/tools/openmotif.lib
1.57      bertrand   52:    rm -rf $(top_builddir)/tools/@OPENSSL@
1.67      bertrand   53:    rm -rf $(top_builddir)/tools/@ZLIB@
1.1       bertrand   54: 
1.32      bertrand   55: $(top_builddir)/tools/@NCURSES@/lib/@LIB_PREFIX@ncurses.a:
1.7       bertrand   56:    for i in $(shell find tools/@NCURSES@ -name Makefile \
                     57:         -exec grep static {} /dev/null \; | cut -d: -f1); \
1.3       bertrand   58:    do \
1.7       bertrand   59:        echo -n Checking $$i; \
1.31      bertrand   60:        TMP=tmp.ncurses; \
1.7       bertrand   61:        if [ -n "$$(grep static $$i | grep dynamic)" ]; then \
                     62:            awk \
                     63:            '{ \
                     64:                if (index($$0, "-static") != 0 && index($$0, "-dynamic") != 0) \
                     65:                { \
                     66:                    for(j = 1; j <= NF; j++) \
                     67:                    { \
                     68:                        if (index($$j, "-static") == 0) \
                     69:                        { \
                     70:                            printf("%s ", $$j); \
                     71:                        } \
                     72:                    } \
                     73:                    printf("\n"); \
                     74:                } \
                     75:                else \
                     76:                { \
                     77:                    print; \
                     78:                } \
                     79:            }' $$i > $$TMP; \
1.17      bertrand   80:            mv -f $$TMP $$i; \
1.7       bertrand   81:            echo -n " (fixed)"; \
                     82:        else \
                     83:            echo -n " (nothing to do)"; \
1.17      bertrand   84:            rm -f $$TMP; \
1.7       bertrand   85:        fi; \
                     86:        echo .; \
1.2       bertrand   87:    done;
1.22      bertrand   88:    for i in tools/@NCURSES@/test/Makefile; \
                     89:    do \
                     90:        echo -n Checking $$i; \
1.31      bertrand   91:        TMP=tmp.ncurses_test; \
1.22      bertrand   92:        awk \
                     93:            '/^TEST_ARGS/ \
1.32      bertrand   94:                { printf("TEST_ARGS = ../lib/@LIB_PREFIX@form.a \
                     95:                        ../lib/@LIB_PREFIX@menu.a "); \
                     96:                printf("../lib/@LIB_PREFIX@panel.a \
                     97:                        ../lib/@LIB_PREFIX@ncurses.a\n"); } \
1.22      bertrand   98:            ! /^TEST_ARGS/ \
                     99:                { print; }' tools/@NCURSES@/test/Makefile > $$TMP; \
                    100:        mv -f $$TMP $$i; \
                    101:        echo .; \
                    102:    done;
1.14      bertrand  103:    if [ @OS@ = "OS2" ]; then \
1.35      bertrand  104:        TMP=tmp.ncurses_test_os2; \
1.11      bertrand  105:        awk \
1.14      bertrand  106:            '/^CXX_AR[ \t]/ \
                    107:                { printf("CXX_AR = $(AR)\n"); } \
                    108:            ! /^CXX_AR[ \t]/ \
                    109:                { print; }' \
                    110:            $(top_builddir)/tools/@NCURSES@/c++/Makefile | \
                    111:        awk \
                    112:            '/^CXX_ARFLAGS[ \t]/ \
                    113:                { printf("CXX_ARFLAGS = $(ARFLAGS)\n"); } \
                    114:            ! /^CXX_ARFLAGS[ \t]/ \
                    115:                { print; }' | \
                    116:        awk \
                    117:            '/^CXX[ \t]/ \
                    118:                { printf("CXX = g++\n"); } \
                    119:            ! /^CXX[ \t]/ \
                    120:                { print; }' > $$TMP; \
1.17      bertrand  121:        mv -f $$TMP $(top_builddir)/tools/@NCURSES@/c++/Makefile; \
1.14      bertrand  122:    fi;
                    123:    $(MAKE) -C $(top_builddir)/tools/@NCURSES@ $(AM_MAKEFLAGS)
1.3       bertrand  124: 
1.34      bertrand  125: $(top_builddir)/tools/@READLINE@/libreadline.a \
                    126:        $(top_builddir)/tools/@READLINE@/libhistory.a:
1.14      bertrand  127:    $(MAKE) -C $(top_builddir)/tools/@READLINE@ $(AM_MAKEFLAGS)
1.3       bertrand  128: 
1.67      bertrand  129: $(top_builddir)/tools/@ZLIB@/libz.a:
                    130:    $(MAKE) -C $(top_builddir)/tools/@ZLIB@ $(AM_MAKEFLAGS)
                    131: 
1.32      bertrand  132: $(top_builddir)/tools/@GSL@/.libs/@LIB_PREFIX@gsl.a:
1.17      bertrand  133: # Quick and dirty hack pour avaliser le remplacement de ${1 + "$@"}
                    134: # dans ltmain.sh et propager les modifications dans le script libtool.
                    135:    if [ @OS@ = "OS2" ]; then \
                    136:        (cd $(top_builddir)/tools/@GSL@ && configure --disable-shared;); \
1.16      bertrand  137:    fi
                    138:    $(MAKE) -C $(top_builddir)/tools/@GSL@ $(AM_MAKEFLAGS)
1.3       bertrand  139: 
1.32      bertrand  140: $(top_builddir)/tools/@ICONV@/lib/.libs/@LIB_PREFIX@iconv.a:
1.4       bertrand  141: # La dépendance est faite par rpliconv.
1.14      bertrand  142:    if [ @OS@ = "OS2" ]; then \
1.31      bertrand  143:        TMP=tmp.libiconv; \
1.14      bertrand  144:        awk '! /^[ \t]cd po/ { print; }' \
                    145:                $(top_builddir)/tools/@ICONV@/Makefile > $$TMP; \
1.17      bertrand  146:        mv -f $$TMP $(top_builddir)/tools/@ICONV@/Makefile; \
1.14      bertrand  147:        $(MAKE) -C $(top_builddir)/tools/@ICONV@ $(AM_MAKEFLAGS) all; \
                    148:    else \
                    149:        $(MAKE) -C $(top_builddir)/tools/@ICONV@ $(AM_MAKEFLAGS) all; \
                    150:    fi
1.3       bertrand  151: 
                    152: $(top_builddir)/lapack/lapack/liblapack.a:
                    153:    (cd $(top_builddir)/lapack/lapack && $(MAKE) $(AM_MAKEFLAGS))
                    154: 
                    155: $(top_builddir)/lapack/blas/libblas.a:
                    156:    (cd $(top_builddir)/lapack/blas && $(MAKE) $(AM_MAKEFLAGS))
                    157: 
1.12      bertrand  158: $(top_builddir)/rpliconv/rpliconv$(EXEEXT): \
1.32      bertrand  159:        $(top_builddir)/tools/@ICONV@/lib/.libs/@LIB_PREFIX@iconv.a
1.14      bertrand  160:    $(MAKE) -C $(top_builddir)/rpliconv $(AM_MAKEFLAGS)
1.3       bertrand  161: 
1.20      bertrand  162: $(top_builddir)/rplawk/rplawk$(EXEEXT):
                    163:    $(MAKE) -C $(top_builddir)/rplawk $(AM_MAKEFLAGS)
                    164: 
1.14      bertrand  165: $(top_builddir)/tools/@FILE@/src/rplfile$(EXEEXT) \
1.3       bertrand  166:        $(top_builddir)/tools/@FILE@/magic/magic.mgc: \
1.32      bertrand  167:        $(top_builddir)/tools/@ICONV@/lib/.libs/@LIB_PREFIX@iconv.a
1.31      bertrand  168:    TMP=tmp.rplfile; \
1.7       bertrand  169:    awk \
                    170:    '{ \
                    171:        if (index($$0, "LDFLAGS") == 1) \
                    172:        { \
                    173:            if (index($$0, "-static") == 0) \
                    174:            { \
1.49      bertrand  175:                printf("%s -static @ABI@\n", $$0); \
1.7       bertrand  176:            } \
                    177:            else \
                    178:            { \
                    179:                print; \
                    180:            } \
                    181:        } \
                    182:        else \
                    183:        { \
1.46      bertrand  184:            if (index($$0, "CFLAGS") == 1) \
                    185:            { \
1.49      bertrand  186:                printf("CFLAGS = -O2 -g @ABI@\n"); \
1.46      bertrand  187:            } \
                    188:            else \
                    189:            { \
                    190:                print; \
                    191:            } \
1.7       bertrand  192:        } \
                    193:    }' tools/@FILE@/src/Makefile > $$TMP; \
1.17      bertrand  194:    mv -f $$TMP tools/@FILE@/src/Makefile
1.14      bertrand  195:    $(MAKE) -C $(top_builddir)/tools/@FILE@ $(AM_MAKEFLAGS)
1.21      bertrand  196:    $(CC) -o $(top_builddir)/tools/@FILE@/src/rplfile$(EXEEXT) \
1.49      bertrand  197:            @CFLAGS@ $(top_builddir)/tools/@FILE@/src/*.o \
1.21      bertrand  198:            $(shell grep '^LIBS =' $(top_builddir)/tools/@FILE@/Makefile | \
                    199:            cut -d= -f2) $(LDFLAGS)
1.3       bertrand  200: 
1.32      bertrand  201: $(top_builddir)/tools/@SQLITE@/.libs/@LIB_PREFIX@sqlite3.a:
1.14      bertrand  202:    $(MAKE) -C $(top_builddir)/tools/@SQLITE@ $(AM_MAKEFLAGS)
1.5       bertrand  203: 
1.32      bertrand  204: $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@crypto.a \
                    205:        $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@ssl.a:
1.49      bertrand  206:    if [ ! -f $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@crypto.a \
                    207:            -o ! -f $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@ssl.a \
                    208:            -o ! -f $(top_builddir)/tools/@OPENSSL@/tests_success ]; then \
1.47      bertrand  209:        if [ @OS@ = "OS2" ]; then \
                    210:            (cd $(top_builddir)/tools/@OPENSSL@ && \
                    211:                    sed -e '1,$$s/-m486/-mtune=i586 -DOPENSSL_USE_IPV6=0/g' \
                    212:                    OS2-EMX.mak | \
                    213:                    sed -e '1,$$s/-DBN_ASM/-UBN_ASM/g' | \
                    214:                    sed -e '1,$$s/-DMD5_ASM/-UMD5_ASM/g' | \
                    215:                    sed -e '1,$$s/-DSHA1_ASM/-USHA1_ASM/g' | \
                    216:                    sed -e '1,$$s/-DOPENSSL_BN_ASM_PART_WORDS/-UOPENSSL_BN_ASM_PART_ASM/g' \
                    217:                    > OS2-EMX.mak2; \
                    218:                    $(MAKE) -j1 -f OS2-EMX.mak2 $(AM_MAKEFLAGS); \
                    219:                    touch tests_success); \
                    220:        else \
                    221:            (cd $(top_builddir)/tools/@OPENSSL@ && \
                    222:                    $(MAKE) -j1 $(AM_MAKEFLAGS); \
                    223:                    touch tests_success); \
                    224:        fi \
1.14      bertrand  225:    fi
1.5       bertrand  226: 
1.38      bertrand  227: $(top_builddir)/rplsums/rplmd5sum$(EXEEXT) \
                    228:        $(top_builddir)/rplsums/rplsha1sum$(EXEEXT): \
1.32      bertrand  229:        $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@crypto.a
1.14      bertrand  230:    $(MAKE) -C $(top_builddir)/rplsums $(AM_MAKEFLAGS)
1.5       bertrand  231: 
1.12      bertrand  232: $(top_builddir)/tools/@GPP@/src/gpp$(EXEEXT):
1.14      bertrand  233:    $(MAKE) -C $(top_builddir)/tools/@GPP@ $(AM_MAKEFLAGS)
1.5       bertrand  234: 
1.72    ! bertrand  235: $(top_builddir)/tools/@UNITS@/units$(EXEEXT):
1.61      bertrand  236:    if [ @OS@ = OpenBSD ]; then \
1.47      bertrand  237:        TMP=tmp.units; \
                    238:        sed -e 's/^DEFS = -DUNITSFILE/DEFS = -Dmalloc=malloc -DUNITSFILE/g' \
                    239:                @UNITS@/Makefile > $$TMP; \
                    240:        mv -f $$TMP @UNITS@/Makefile; \
                    241:    fi; \
1.40      bertrand  242:    $(MAKE) -C $(top_builddir)/tools/@UNITS@ $(AM_MAKEFLAGS)
                    243: 
1.12      bertrand  244: .NOTPARALLEL: $(top_builddir)/tools/@FILE@/src/rplfile$(EXEEXT) \
1.4       bertrand  245:        $(top_builddir)/tools/@FILE@/magic/magic.mgc
                    246: 
1.32      bertrand  247: .NOTPARALLEL: $(top_builddir)/tools/@READLINE@/@LIB_PREFIX@readline.a \
                    248:        $(top_builddir)/tools/@READLINE@/@LIB_PREFIX@history.a
1.4       bertrand  249: 
1.32      bertrand  250: .NOTPARALLEL: $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@crypto.a \
                    251:        $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@ssl.a
1.5       bertrand  252: 
1.38      bertrand  253: .NOTPARALLEL: $(top_builddir)/rplsums/rplmd5sum$(EXEEXT) \
                    254:        $(top_builddir)/rplsums/rplsha1sum$(EXEEXT)
1.5       bertrand  255: 
1.13      bertrand  256: install-strip:
                    257:    $(MAKE) $(AM_MAKEFLAGS) install
                    258: 
1.28      bertrand  259: $(top_builddir)/rplcas/lib/librplcas.a: \
1.32      bertrand  260:        $(top_builddir)/tools/@GSL@/.libs/@LIB_PREFIX@gsl.a
1.27      bertrand  261:    $(MAKE) -C $(top_builddir)/rplcas $(AM_MAKEFLAGS)
                    262: 
1.40      bertrand  263: $(top_builddir)/tools/@OPENMOTIF@/lib/Xm/.libs/libXm.a: \
                    264:        $(top_builddir)/tools/@LIBXPM@/src/.libs/libXpm.a
1.41      bertrand  265:    $(MAKE) -C $(top_builddir)/tools/@OPENMOTIF@ -j1
1.40      bertrand  266: 
                    267: $(top_builddir)/tools/@LIBXPM@/src/.libs/libXpm.a:
                    268:    $(MAKE) -C $(top_builddir)/tools/@LIBXPM@ $(AM_MAKEFLAGS)
                    269: 
                    270: $(top_builddir)/tools/@SIGSEGV@/src/.libs/@LIB_PREFIX@sigsegv.a:
                    271:    $(MAKE) -C $(top_builddir)/tools/@SIGSEGV@ $(AM_MAKEFLAGS)
                    272: 
1.60      bertrand  273: all-rpl: $(top_builddir)/tools/@NCURSES@/lib/@LIB_PREFIX@ncurses.a \
1.32      bertrand  274:        $(top_builddir)/tools/@READLINE@/@LIB_PREFIX@readline.a \
                    275:        $(top_builddir)/tools/@READLINE@/@LIB_PREFIX@history.a \
                    276:        $(top_builddir)/tools/@GSL@/.libs/@LIB_PREFIX@gsl.a \
                    277:        $(top_builddir)/tools/@SQLITE@/.libs/@LIB_PREFIX@sqlite3.a \
                    278:        $(top_builddir)/tools/@OPENSSL@/@LIB_PREFIX@crypto.a \
1.5       bertrand  279:        $(top_builddir)/tools/@OPENSSL@/libssl.a \
1.67      bertrand  280:        $(top_builddir)/tools/@ZLIB@/libz.a \
1.3       bertrand  281:        $(top_builddir)/lapack/lapack/liblapack.a \
                    282:        $(top_builddir)/lapack/blas/libblas.a \
1.12      bertrand  283:        $(top_builddir)/rpliconv/rpliconv$(EXEEXT) \
1.20      bertrand  284:        $(top_builddir)/rplawk/rplawk$(EXEEXT) \
1.12      bertrand  285:        $(top_builddir)/tools/@FILE@/src/rplfile$(EXEEXT) \
1.5       bertrand  286:        $(top_builddir)/tools/@FILE@/magic/magic.mgc \
1.33      bertrand  287:        $(top_builddir)/rplsums/rplmd5sum$(EXEEXT) \
                    288:        $(top_builddir)/rplsums/rplsha1sum$(EXEEXT) \
1.27      bertrand  289:        $(top_builddir)/tools/@GPP@/src/gpp$(EXEEXT) \
1.39      bertrand  290:        $(top_builddir)/tools/@UNITS@/units$(EXEEXT) \
1.40      bertrand  291:        $(top_builddir)/tools/@SIGSEGV@/src/.libs/@LIB_PREFIX@sigsegv.a \
1.38      bertrand  292:        @LIBRPLCAS@ @LIBMOTIF@
1.4       bertrand  293: # Cette règle n'est là que pour forcer la compilation de Gnuplot.
1.14      bertrand  294:    $(MAKE) -C $(top_builddir)/tools $(AM_MAKEFLAGS)
                    295:    $(MAKE) -C $(top_builddir)/rpltags $(AM_MAKEFLAGS)
                    296:    $(MAKE) -C $(top_builddir)/src $(AM_MAKEFLAGS)
1.42      bertrand  297: 
1.44      bertrand  298: debian: all
1.51      bertrand  299:    $(MAKE) -C $(top_builddir)/src $(AM_MAKEFLAGS) librpl
1.42      bertrand  300:    $(MKDIR_P) $(top_builddir)/debian/$(prefix)/bin
1.44      bertrand  301:    for i in $(top_builddir)/src/rpl$(EXEEXT) $(top_builddir)/scripts/rplcc \
                    302:            $(top_builddir)/scripts/rpllink $(top_builddir)/scripts/mkrplso \
                    303:            $(top_builddir)/tools/@FILE@/src/rplfile$(EXEEXT) \
                    304:            $(top_builddir)/rpltags/rpltags$(EXEEXT) \
                    305:            $(top_builddir)/rplawk/rplawk$(EXEEXT) \
                    306:            $(top_builddir)/rpliconv/rpliconv$(EXEEXT); \
                    307:    do cp -f $$i $(top_builddir)/debian/$(prefix)/bin; \
1.42      bertrand  308:    done
1.44      bertrand  309:    cp $(top_builddir)/tools/@UNITS@/units$(EXEEXT) \
                    310:            $(top_builddir)/debian/$(prefix)/bin/rplconvert$(EXEEXT)
                    311:    cp $(top_builddir)/tools/@GPP@/src/gpp$(EXEEXT) \
                    312:            $(top_builddir)/debian/$(prefix)/bin/rplpp$(EXEEXT)
1.42      bertrand  313:    $(MKDIR_P) $(top_builddir)/debian/$(prefix)/include
1.44      bertrand  314:    for i in $(srcdir)/src/librpl.h $(top_builddir)/rplconfig.h \
                    315:        $(srcdir)/src/rpl.h $(srcdir)/src/rpltypes.h \
                    316:            $(top_builddir)/src/librplprototypes.h \
                    317:            $(srcdir)/src/rplexternals.h $(top_builddir)/src/rpl.inc; \
                    318:    do cp -f $$i $(top_builddir)/debian/$(prefix)/include; \
1.42      bertrand  319:    done
                    320:    $(MKDIR_P) $(top_builddir)/debian/$(prefix)/lib
1.44      bertrand  321:    cp -f $(top_builddir)/src/librpl.a $(top_builddir)/debian/$(prefix)/lib
1.42      bertrand  322:    for j in man/man1 man/fr_FR/man1; \
                    323:    do \
                    324:        $(MKDIR_P) $(top_builddir)/debian/$(prefix)/$$j; \
1.44      bertrand  325:        for i in $(top_builddir)/$$j/gpp.1 $(top_builddir)/$$j/mkrplso.1 \
                    326:                $(top_builddir)/$$j/rpl.1 $(top_builddir)/$$j/rplcc.1 \
                    327:                $(top_builddir)/$$j/rpllink.1 $(top_builddir)/$$j/rplpp.1 \
                    328:                $(top_builddir)/$$j/rpltags.1; \
1.42      bertrand  329:        do \
1.44      bertrand  330:            if [ -f $$i ]; then \
                    331:                cp -f $$i $(top_builddir)/debian/$(prefix)/$$j; \
1.42      bertrand  332:            fi; \
                    333:        done; \
                    334:    done
                    335:    $(MKDIR_P) $(top_builddir)/debian/$(prefix)/share
1.44      bertrand  336:    cp -f $(top_builddir)/tools/@FILE@/magic/magic.mgc \
1.50      bertrand  337:            $(top_builddir)/debian/$(prefix)/share/rplfiles.mgc
1.59      bertrand  338:    cp -f $(srcdir)/tools/@UNITS@/definitions.units \
                    339:            $(top_builddir)/debian/$(prefix)/share/rplunits.tmp
                    340:    sed 's/^!include currency.units//g' \
                    341:            $(top_builddir)/debian/$(prefix)/share/rplunits.tmp \
                    342:            > $(top_builddir)/debian/$(prefix)/share/rplunits
                    343:    rm -f $(top_builddir)/debian/$(prefix)/share/rplunits.tmp
1.45      bertrand  344:    if [ -e $(top_builddir)/tools/@GNUPLOT@/src/gnuplot$(EXEEXT) ]; then \
                    345:        if [ -e $(prefix)/bin/gnuplot$(EXEEXT) ]; then \
                    346:            mv -f $(prefix)/bin/gnuplot$(EXEEXT) \
                    347:                    $(prefix)/bin/gnuplot$(EXEEXT).orig; \
                    348:            mv -f $(prefix)/share/gnuplot $(prefix)/share/gnuplot.orig; \
                    349:            mv -f $(prefix)/libexec/gnuplot $(prefix)/libexec/gnuplot.orig; \
                    350:            (cd $(top_builddir)/tools/@GNUPLOT@ && $(MAKE) install); \
                    351:            cp -f $(prefix)/bin/gnuplot$(EXEEXT) \
                    352:                    $(top_builddir)/debian/$(prefix)/bin; \
                    353:            cp -af $(prefix)/share/gnuplot \
                    354:                    $(top_builddir)/debian/$(prefix)/share; \
                    355:            $(MKDIR_P) $(top_builddir)/debian/$(prefix)/libexec; \
                    356:            cp -af $(prefix)/libexec/gnuplot \
                    357:                    $(top_builddir)/debian/$(prefix)/libexec; \
                    358:            (cd $(top_builddir)/tools/@GNUPLOT@ && $(MAKE) uninstall); \
                    359:            rm -f $(prefix)/bin/gnuplot$(EXEEXT); \
                    360:            rm -rf $(prefix)/share/gnuplot; \
                    361:            rm -rf $(prefix)/libexec/gnuplot; \
                    362:            mv $(prefix)/bin/gnuplot$(EXEEXT).orig \
                    363:                    $(prefix)/bin/gnuplot$(EXEEXT); \
                    364:            mv -f $(prefix)/share/gnuplot.orig $(prefix)/share/gnuplot; \
                    365:            mv -f $(prefix)/libexec/gnuplot.orig $(prefix)/libexec/gnuplot; \
                    366:        else \
                    367:            (cd $(top_builddir)/tools/@GNUPLOT@ && $(MAKE) install); \
                    368:            cp -f $(prefix)/bin/gnuplot$(EXEEXT) \
                    369:                    $(top_builddir)/debian/$(prefix)/bin; \
                    370:            cp -af $(prefix)/share/gnuplot \
                    371:                    $(top_builddir)/debian/$(prefix)/share; \
                    372:            $(MKDIR_P) $(top_builddir)/debian/$(prefix)/libexec; \
                    373:            cp -af $(prefix)/libexec/gnuplot \
                    374:                    $(top_builddir)/debian/$(prefix)/libexec; \
                    375:            (cd $(top_builddir)/tools/@GNUPLOT@ && $(MAKE) uninstall); \
                    376:        fi; \
                    377:    fi
1.42      bertrand  378:    $(MKDIR_P) $(top_builddir)/debian/DEBIAN
                    379:    cp -f $(top_builddir)/DEBIAN/* $(top_builddir)/debian/DEBIAN
                    380:    (cd  $(top_builddir) && dpkg-deb --build debian debian)

CVSweb interface <joel.bertrand@systella.fr>