IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 5, 2009, 11:13:29 AM (17 years ago)
Author:
beaumont
Message:

Finished ppStack visualization. Unified the way in which visualizations are invoked, plotting windows are closed, etc

Location:
branches/cnb_branches/cnb_branch_20090215
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/cnb_branches/cnb_branch_20090215

  • branches/cnb_branches/cnb_branch_20090215/psconfig/psbuild

    r22419 r23197  
    283283        if (! -e "Makefile") { &failure($module[$i], "missing makefile: do you need to run the -dev developer build?"); }
    284284
     285        my $makeopts = $ENV{'PSCONFIG_MAKEOPTS'}; # Options for make
     286        my $make = "make";      # Command for "make"
     287        $make .= " $makeopts" if defined $makeopts;
     288
    285289        if ($clean) {
    286             vsystem ("make clean");
     290            vsystem ("$make clean");
    287291            if ($?) { &failure($module[$i], "failure in make clean"); }
    288292        }
    289293
    290         vsystem ("make");
     294        vsystem ("$make");
    291295        if ($?) { &failure($module[$i], "failure in make"); }
    292296
    293         vsystem ("make install");
     297        vsystem ("$make install");
    294298        if ($?) { &failure($module[$i], "failure in make install"); }
    295299
Note: See TracChangeset for help on using the changeset viewer.