Action_Thermostats
        Add_AtomRandomPerturbation
        Add_RotateAroundBondAction
        Add_SelectAtomByNameAction
        Adding_Graph_to_ChangeBondActions
        Adding_MD_integration_tests
        Adding_StructOpt_integration_tests
        AutomationFragmentation_failures
        Candidate_v1.6.0
        Candidate_v1.6.1
        Candidate_v1.7.0
        ChangeBugEmailaddress
        ChangingTestPorts
        ChemicalSpaceEvaluator
        Combining_Subpackages
        Debian_Package_split
        Debian_package_split_molecuildergui_only
        Disabling_MemDebug
        Docu_Python_wait
        EmpiricalPotential_contain_HomologyGraph_documentation
        Enable_parallel_make_install
        Enhance_userguide
        Enhanced_StructuralOptimization
        Enhanced_StructuralOptimization_continued
        Example_ManyWaysToTranslateAtom
        Exclude_Hydrogens_annealWithBondGraph
        FitPartialCharges_GlobalError
        Fix_ChronosMutex
        Fix_StatusMsg
        Fix_StepWorldTime_single_argument
        Fix_Verbose_Codepatterns
        ForceAnnealing_goodresults
        ForceAnnealing_oldresults
        ForceAnnealing_tocheck
        ForceAnnealing_with_BondGraph
        ForceAnnealing_with_BondGraph_continued
        ForceAnnealing_with_BondGraph_continued_betteresults
        ForceAnnealing_with_BondGraph_contraction-expansion
        GeometryObjects
        Gui_displays_atomic_force_velocity
        IndependentFragmentGrids_IntegrationTest
        JobMarket_RobustOnKillsSegFaults
        JobMarket_StableWorkerPool
        JobMarket_unresolvable_hostname_fix
        ODR_violation_mpqc_open
        PartialCharges_OrthogonalSummation
        PythonUI_with_named_parameters
        QtGui_reactivate_TimeChanged_changes
        Recreated_GuiChecks
        RotateToPrincipalAxisSystem_UndoRedo
        StoppableMakroAction
        Subpackage_levmar
        Subpackage_vmg
        TremoloParser_IncreasedPrecision
        TremoloParser_MultipleTimesteps
        Ubuntu_1604_changes
        stable
      
      
      
| Line |  | 
|---|
| 1 | # emacs should use -*- Makefile -*- mode. | 
|---|
| 2 |  | 
|---|
| 3 | # JOBS can be set to "-j n" to do parallel makes in subdirectories | 
|---|
| 4 | default:: | 
|---|
| 5 | for dir in $(SUBDIRS); \ | 
|---|
| 6 | do \ | 
|---|
| 7 | (cd $${dir} && $(MAKE) $(JOBS)) || exit 1; \ | 
|---|
| 8 | done | 
|---|
| 9 |  | 
|---|
| 10 | ifndef DODEPEND | 
|---|
| 11 | DODEPENDOPT = "DODEPEND=no" | 
|---|
| 12 | endif | 
|---|
| 13 |  | 
|---|
| 14 | install:: | 
|---|
| 15 | for dir in $(SUBDIRS); \ | 
|---|
| 16 | do \ | 
|---|
| 17 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) install) || exit 1; \ | 
|---|
| 18 | done | 
|---|
| 19 |  | 
|---|
| 20 | install_devel:: | 
|---|
| 21 | for dir in $(SUBDIRS); \ | 
|---|
| 22 | do \ | 
|---|
| 23 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) install_devel) || exit 1; \ | 
|---|
| 24 | done | 
|---|
| 25 |  | 
|---|
| 26 | install_inc:: | 
|---|
| 27 | for dir in $(SUBDIRS); \ | 
|---|
| 28 | do \ | 
|---|
| 29 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) install_inc) || exit 1; \ | 
|---|
| 30 | done | 
|---|
| 31 |  | 
|---|
| 32 | install_target:: | 
|---|
| 33 | for dir in $(SUBDIRS); \ | 
|---|
| 34 | do \ | 
|---|
| 35 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) install_target) || exit 1; \ | 
|---|
| 36 | done | 
|---|
| 37 |  | 
|---|
| 38 | testbuild:: | 
|---|
| 39 | for dir in $(SUBDIRS); \ | 
|---|
| 40 | do \ | 
|---|
| 41 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) testbuild) || exit 1; \ | 
|---|
| 42 | done | 
|---|
| 43 |  | 
|---|
| 44 | testrun:: | 
|---|
| 45 | for dir in $(SUBDIRS); \ | 
|---|
| 46 | do \ | 
|---|
| 47 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) testrun) || exit 1; \ | 
|---|
| 48 | done | 
|---|
| 49 |  | 
|---|
| 50 | doc:: | 
|---|
| 51 | for dir in $(SUBDIRS); \ | 
|---|
| 52 | do \ | 
|---|
| 53 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) doc) || exit 1; \ | 
|---|
| 54 | done | 
|---|
| 55 |  | 
|---|
| 56 | clean:: | 
|---|
| 57 | for dir in $(SUBDIRS); \ | 
|---|
| 58 | do \ | 
|---|
| 59 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) clean) || exit 1; \ | 
|---|
| 60 | done | 
|---|
| 61 |  | 
|---|
| 62 | testclean:: | 
|---|
| 63 | for dir in $(SUBDIRS); \ | 
|---|
| 64 | do \ | 
|---|
| 65 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) testclean) || exit 1; \ | 
|---|
| 66 | done | 
|---|
| 67 |  | 
|---|
| 68 | oclean:: | 
|---|
| 69 | for dir in $(SUBDIRS); \ | 
|---|
| 70 | do \ | 
|---|
| 71 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) oclean) || exit 1; \ | 
|---|
| 72 | done | 
|---|
| 73 |  | 
|---|
| 74 | dclean:: | 
|---|
| 75 | for dir in $(SUBDIRS); \ | 
|---|
| 76 | do \ | 
|---|
| 77 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) dclean) || exit 1; \ | 
|---|
| 78 | done | 
|---|
| 79 |  | 
|---|
| 80 | distclean:: | 
|---|
| 81 | for dir in $(SUBDIRS); \ | 
|---|
| 82 | do \ | 
|---|
| 83 | (cd $${dir} && $(MAKE) $(DODEPENDOPT) distclean) || exit 1; \ | 
|---|
| 84 | done | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.