Changeset 39557
- Timestamp:
- Apr 28, 2016, 9:39:27 AM (10 years ago)
- Location:
- trunk/dvodist
- Files:
-
- 5 added
- 5 edited
-
EXAMPLE (modified) (1 diff)
-
Makefile.in (modified) (5 diffs)
-
dvodist (modified) (1 prop)
-
dvodist/Makefile.in (added)
-
scripts/copy.makefile (added)
-
scripts/fix.pv3 (added)
-
scripts/fix.pv3.v2 (added)
-
scripts/mkdist.3pi.pv0.20120509.sh (modified) (2 diffs)
-
scripts/run.mkindex (added)
-
www-util/dvodist.page.mkd (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dvodist/EXAMPLE
r37925 r39557 18 18 NOTE: run in dvodist subdir 19 19 20 * copy a Makefile from one of the older distribtions 21 22 * modify the makefile to point at the new directories 20 * create a Makefile: 21 ../scripts/copy.makefile 3pi-pv0-20120509 3pi.pv0.20120509 23 22 24 23 * add the makefile entry to the dvodist/Makefile.in, eg: -
trunk/dvodist/Makefile.in
r37805 r39557 87 87 IPPDATA = $(IPPDATA-RAW) $(IPPDATA-MKD) 88 88 89 include $(SRC-DVODIST)/3pi.20120509/Makefile 90 include $(SRC-DVODIST)/3pi.20120525/Makefile 91 include $(SRC-DVODIST)/3pi.20120606/Makefile 92 include $(SRC-DVODIST)/3pi.20130227/Makefile 93 include $(SRC-DVODIST)/3pi.20140621/Makefile 94 include $(SRC-DVODIST)/3pi.20140713/Makefile 95 include $(SRC-DVODIST)/LAP.3pi.PV1/Makefile 96 include $(SRC-DVODIST)/lap.pv2.20141215/Makefile 89 # include $(SRC-DVODIST)/3pi.20120509/Makefile 90 # include $(SRC-DVODIST)/3pi.20120525/Makefile 91 # include $(SRC-DVODIST)/3pi.20120606/Makefile 92 # include $(SRC-DVODIST)/3pi.20130227/Makefile 93 # include $(SRC-DVODIST)/3pi.20140621/Makefile 94 # include $(SRC-DVODIST)/3pi.20140713/Makefile 95 # include $(SRC-DVODIST)/LAP.3pi.PV1/Makefile 96 # include $(SRC-DVODIST)/lap.pv2.20141215/Makefile 97 98 include $(SRC-DVODIST)/3pi.pv0.20120509/Makefile 99 include $(SRC-DVODIST)/3pi.pv0.20120525/Makefile 100 include $(SRC-DVODIST)/3pi.pv0.20120606/Makefile 101 include $(SRC-DVODIST)/3pi.pv0.20130227/Makefile 102 include $(SRC-DVODIST)/3pi.pv0.20140621/Makefile 103 include $(SRC-DVODIST)/3pi.pv0.20140713/Makefile 104 include $(SRC-DVODIST)/3pi.pv1.20130708/Makefile 105 include $(SRC-DVODIST)/3pi.pv2.20141215/Makefile 106 include $(SRC-DVODIST)/3pi.pv3.20160422/Makefile 97 107 include $(SRC-DVODIST)/3pi.20120525.tables/Makefile 98 108 include $(SRC-DVODIST)/3pi.20130227.tables/Makefile … … 100 110 101 111 DVODIST_DIRS = \ 102 $(DIST-3pi-20120509) \ 103 $(DIST-3pi-20120525) \ 104 $(DIST-3pi-20120606) \ 105 $(DIST-3pi-20130227) \ 106 $(DIST-3pi-20140621) \ 107 $(DIST-3pi-20140713) \ 108 $(DIST-LAP-3pi-PV1) \ 109 $(DIST-lap-pv2-20141215) \ 112 $(DIST-3pi-pv0-20120509) \ 113 $(DIST-3pi-pv0-20120525) \ 114 $(DIST-3pi-pv0-20120606) \ 115 $(DIST-3pi-pv0-20130227) \ 116 $(DIST-3pi-pv0-20140621) \ 117 $(DIST-3pi-pv0-20140713) \ 118 $(DIST-3pi-pv1-20130708) \ 119 $(DIST-3pi-pv2-20141215) \ 120 $(DIST-3pi-pv3-20160422) \ 110 121 $(DIST-3pi-20120525-tables) \ 111 122 $(DIST-3pi-20130227-tables) \ … … 138 149 139 150 # mkd files are used to generate php files 140 $(TGT-DVODIST)/%.php: $(SRC-DVODIST)/%.mkd 151 $(TGT-DVODIST)/%.mkd: $(SRC-DVODIST)/%.mkd 152 @if [ ! -d $(@D) ]; then mkdir -p $(@D) || exit; fi 153 rm -f $(TGT-DVODIST)/$*.mkd || exit 154 cp -f $(SRC-DVODIST)/$*.mkd $(TGT-DVODIST)/$*.mkd || exit 155 156 # mkd files are used to generate php files 157 $(TGT-DVODIST)/%.php: $(TGT-DVODIST)/%.mkd 141 158 @if [ ! -d $(@D) ]; then mkdir -p $(@D) || exit; fi 142 159 rm -f $(TGT-DVODIST)/$*.php || exit 143 $(GENERATE) $( SRC-DVODIST)/$*.mkd $(TGT-DVODIST)/$*.php || exit160 $(GENERATE) $(TGT-DVODIST)/$*.mkd $(TGT-DVODIST)/$*.php || exit 144 161 145 162 # non-generated php code is copied directly … … 158 175 159 176 # mkd files are used to generate php files 160 $(TGT-IPPDATA)/%. php: $(SRC-IPPDATA)/%.mkd177 $(TGT-IPPDATA)/%.mkd: $(SRC-IPPDATA)/%.mkd 161 178 @if [ ! -d $(@D) ]; then mkdir -p $(@D) || exit; fi 162 179 rm -f $(TGT-IPPDATA)/$*.php || exit 163 $(GENERATE) $(SRC-IPPDATA)/$*.mkd $(TGT-IPPDATA)/$*.php || exit 180 cp -f $(SRC-IPPDATA)/$*.mkd $(TGT-IPPDATA)/$*.mkd || exit 181 182 # mkd files are used to generate php files 183 $(TGT-IPPDATA)/%.php: $(TGT-IPPDATA)/%.mkd 184 @if [ ! -d $(@D) ]; then mkdir -p $(@D) || exit; fi 185 rm -f $(TGT-IPPDATA)/$*.php || exit 186 $(GENERATE) $(TGT-IPPDATA)/$*.mkd $(TGT-IPPDATA)/$*.php || exit 164 187 165 188 # non-generated php code is copied directly … … 181 204 rm -f `find . -name "#*"` 182 205 206 .PRECIOUS: $(TGT-DVODIST)/%.mkd 183 207 .PRECIOUS: $(SRC)/%.mkd 184 208 .PRECIOUS: $(SRC)/%.php -
trunk/dvodist/dvodist
-
Property svn:ignore
set to
logs
-
Property svn:ignore
set to
-
trunk/dvodist/scripts/mkdist.3pi.pv0.20120509.sh
r39553 r39557 16 16 17 17 # top-level files 18 if ( 1) then18 if (0) then 19 19 mkdir -p $cattgt 20 20 foreach file (HostTable.dat Images.dat Photcodes.dat SkyTable.fits flatcorr.fits) … … 29 29 30 30 # link all files from all hostdirs into all DEC dirs 31 foreach hostdir (`grep -v \# $cattgt/HostTable.dat | awk '{print $3}'`) 31 foreach hostdir (`grep -v \# $cattgt/HostTable.dat | grep ipp0\[345\] | awk '{print $3}'`) 32 # foreach hostdir (`grep -v \# $cattgt/HostTable.dat | awk '{print $3}'`) 32 33 echo $hostdir 33 34 foreach dir ($nlist $slist) -
trunk/dvodist/www-util/dvodist.page.mkd
r35415 r39557 14 14 $rootdir = "@ROOTWWW@"; 15 15 } else { 16 $rootdir = "@ROOTWWW@@ROOTDIR@"; 16 // $rootdir = "@ROOTWWW@@ROOTDIR@"; 17 $rootdir = "@ROOTWWW@"; 17 18 } 18 19
Note:
See TracChangeset
for help on using the changeset viewer.
