Annotation of rpl/Makefile.am, revision 1.52

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

CVSweb interface <joel.bertrand@systella.fr>