IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 27, 2019, 11:39:38 AM (7 years ago)
Author:
eugene
Message:

merge changes from trunk (mostly Ohana & ippMonitor improvements, some work on ippTools)

Location:
branches/eam_branches/ipp-20191011
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20191011

  • branches/eam_branches/ipp-20191011/ippMonitor

  • branches/eam_branches/ipp-20191011/ippMonitor/Makefile.in

    r40844 r41170  
    1 default: updateVersion php
     1default: updateVersion php mklink
    22help:
    33        @echo "USAGE: make php"
    44
    5 SRC     =       src
    6 DEF     =       def
    7 RAW     =       raw
    8 SCRIPTS =       scripts
    9 DESTBIN =       @BINDIR@
    10 DESTWWW =       @HTDOCS@/ippMonitor
     5SRC     = src
     6DEF     = def
     7RAW     = raw
     8SCRIPTS = scripts
     9DESTBIN = @BINDIR@
     10DESTWWW = @HTDOCS@/ippMonitor
     11CZARPLOTDIR = /export/@HOST2@.0/ipp/czartool_plots
     12METRICSPLOTDIR = /export/@HOST2@.0/ipp/ippMetrics
    1113
    1214GENERATE = $(SCRIPTS)/generate
     
    172174$(DESTWWW)/fullforceRun.php \
    173175$(DESTWWW)/fullforceSummary.php \
     176$(DESTWWW)/fullforce_failure.php \
    174177$(DESTWWW)/failedFullforce.php \
    175178$(DESTWWW)/diffSummary.php \
     
    280283$(DESTWWW)/noimage.png
    281284
    282 DESTLINK = $(DESTWWW)/index.php
    283 
    284 php: $(RAWSRC) $(DEFSRC) $(PICTURES) $(DESTLINK) $(PROGRAMS)
     285DESTLINK = $(DESTWWW)/index.php
     286CZPLOTSLINK = $(DESTWWW)/czartool_plots
     287METRICSLINK = $(DESTWWW)/ippMetrics
     288
     289
     290php: $(RAWSRC) $(DEFSRC) $(PICTURES) $(DESTLINK) $(PROGRAMS)
    285291
    286292# dependancy rules for binary code #########################
     
    288294# .PRECIOUS: $(BIN)/%.$(ARCH)
    289295
    290 $(DESTLINK): $(DESTWWW)/Login.php
     296$(DESTLINK): $(DESTWWW)/Login.php 
    291297        rm -f $@
    292298        ln -s $(DESTWWW)/Login.php $@
     
    311317updateVersion:
    312318        rm -f $(DESTWWW)/version.php
    313 
    314 test:
     319        @if [ ! -d $(CZARPLOTDIR) ]; then mkdir -p $(CZARPLOTDIR); fi
     320        @if [ ! -d $(METRICSPLOTDIR) ]; then mkdir -p $(METRICSPLOTDIR); fi
     321
     322mklink: $(CZPLOTSLINK) $(METRICSLINK)
     323
     324$(CZPLOTSLINK): $(CZARPLOTDIR)
     325        rm -f $@
     326        ln -s $(CZARPLOTDIR) $@
     327
     328$(METRICSLINK): $(METRICSPLOTDIR)
     329        rm -f $@
     330        ln -s $(METRICSPLOTDIR) $@
     331
     332test:
    315333#DESTWWW := $(DESTWWW)/test
    316334        echo $(DESTWWW)
     
    355373        cp $(SCRIPTS)/$* $(DESTBIN)/$* || exit
    356374        chmod +x $(DESTBIN)/$* || exit
     375
     376
     377
    357378
    358379# utilities #################################################
Note: See TracChangeset for help on using the changeset viewer.