Changeset 905 for trunk/Makefile.in


Ignore:
Timestamp:
Feb 26, 2008, 12:47:21 PM (17 years ago)
Author:
dkearney
Message:

added --without-tclsh and --disable-gui configure flags so we can build rappture libraries without the gui for installation on grid machines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.in

    r833 r905  
    3737
    3838build_gui:
    39         make -C gui
     39        @if test "x@ENABLE_GUI@" == "xyes" ; then \
     40                make -C gui; \
     41        fi
    4042
    4143install_gui:
    42         make -C gui install
     44        @if test "x@ENABLE_GUI@" == "xyes" ; then \
     45                make -C gui install; \
     46        fi
    4347
    4448rplib:
     
    8286
    8387#tcl bindings
     88#cd tcl; @TCLSH@ install.tcl
    8489install_tcl:
    85         cd tcl; $(bindir)/tclsh install.tcl
    86 #       cd tcl; @TCLSH@ install.tcl
    87         make -C src/tcl install
     90        @if test "x@TCLSH@" != "x" ; then \
     91                cd tcl; $(bindir)/tclsh install.tcl; \
     92                make -C src/tcl install; \
     93        fi
    8894
    8995# matlab bindings
     
    163169
    164170distclean:
    165         rm examples/demo.bash
     171        rm -f examples/demo.bash
    166172        make -C examples/app-fermi/cee distclean
    167173        make -C examples/app-fermi/fortran distclean
     
    177183        make -C src2/core distclean
    178184        make -C test distclean
    179         rm gui/apps/rappture gui/apps/simsim gui/apps/rappture.env;
     185        rm -f gui/apps/rappture gui/apps/simsim gui/apps/rappture.env;
    180186        rm -rf Makefile config.status config.log bin;
    181187        rm -f include/*
Note: See TracChangeset for help on using the changeset viewer.