voxforge.org
VoxForge Dev

Changeset 1014

Show
Ignore:
Timestamp:
12/28/06 13:21:12 (2 years ago)
Author:
kmaclean
Message:

Updates to mirroring scripts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • VoxForge/Trunk/Scripts/Mirroring_scripts/Lexicon_makefile

    r914 r1014  
     1#################################################################### 
     2### 
     3### script name: Lexicon_makefile 
     4### modified by: Ken MacLean 
     5### email: contact@voxforge.org 
     6### Date: 2006.12.28 
     7### Command: make -f Lexicon_makefile 
     8### Version: 0.1 
     9###              
     10### Copyright (C) 2006 Ken MacLean 
     11### 
     12### This program is free software; you can redistribute it and/or 
     13### modify it under the terms of the GNU General Public License 
     14### as published by the Free Software Foundation; either version 2 
     15### of the License, or (at your option) any later version. 
     16### 
     17### This program is distributed in the hope that it will be useful, 
     18### but WITHOUT ANY WARRANTY; without even the implied warranty of 
     19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     20### GNU General Public License for more details. 
     21### 
     22#################################################################### 
    123SOURCE = ../../Lexicon 
    224TARGET = /data/svn-tarfiles/Trunk/Lexicon 
  • VoxForge/Trunk/Scripts/Mirroring_scripts/Releases_makefile

    r1009 r1014  
     1#################################################################### 
     2### 
     3### script name: Releases_makefile 
     4### modified by: Ken MacLean 
     5### email: contact@voxforge.org 
     6### Date: 2006.12.28 
     7### Command: make -f Releases_makefile 
     8### Version: 0.1 
     9###              
     10### Copyright (C) 2006 Ken MacLean 
     11### 
     12### This program is free software; you can redistribute it and/or 
     13### modify it under the terms of the GNU General Public License 
     14### as published by the Free Software Foundation; either version 2 
     15### of the License, or (at your option) any later version. 
     16### 
     17### This program is distributed in the hope that it will be useful, 
     18### but WITHOUT ANY WARRANTY; without even the implied warranty of 
     19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     20### GNU General Public License for more details. 
     21### 
     22#################################################################### 
     23# Notes re Make command:                 
     24# cannot use $(release) variable in command section ... it takes the last value assigned *in the script* !!!                                                                                                                                               
     25# make invokes a new subshell for each command line! 
     26# To ignore errors in a command line, write a `-' at the beginning of the line's text  
     27# must indent commands with a tab 
     28# $(<) - name of 1st prerequisite; $(<D) - directory part; $(<F) - File part 
     29# $(^) - name of all prerequisites; $(^D) - directory part; $(^F) - File part 
     30#################################################################### 
     31 
    132SOURCE = ../../../Tags/Releases 
    233TARGET = /data/svn-tarfiles/Tags/Releases 
     
    1445         Julius_AcousticModels_8kHz-16bit_MFCC_O_D_build726.tgz  \ 
    1546         Julius_AcousticModels_8kHz-16bit_MFCC_O_D_build726.zip  \ 
     47         Julius-3.5.2-Quickstart-Linux_build726.tgz \ 
     48         Julius-3.5.2-Quickstart-Windows_build726.zip  \ 
    1649         Julius_AcousticModels_8kHz-16bit_MFCC_O_D_build233.tgz  \ 
    1750         Julius_AcousticModels_8kHz-16bit_MFCC_O_D_build233.zip  \ 
     
    3669        -mkdir $(TARGET)/0_1alpha-build524       
    3770        -mkdir $(TARGET)/0_1alpha-build541               
    38                  
    39 # Note cannot use $(release) variable in command section ... it takes the last value assigned *in the script* !!!                                                                                                                                                  
    40 # make invokes a new subshell for each command line! 
    41 # To ignore errors in a command line, write a `-' at the beginning of the line's text  
    42 # must indent commands with a tab 
    4371 
    4472release = 0_1_1-build726 
     
    5179Julius_AcousticModels_8kHz-16bit_MFCC_O_D_build726.zip : $(release)/AcousticModels/HTK/8kHz-16bit/MFCC_O_D 
    5280        cd $< && zip $(TARGET)/0_1_1-build726/$@ * 
     81qslin = $(release)/QuickStart/Linux/julius-3.5.2-quickstart-linux 
     82Julius-3.5.2-Quickstart-Linux_build726.tgz : $(qslin) $(qslin)/acoustic_model_files $(qslin)/bin $(qslin)/doc $(qslin)/etc $(qslin)/grammar $(qslin)/julius_docs 
     83        cd $< && tar --exclude=.svn -zcvf  $(TARGET)/0_1_1-build726/$@ * 
     84qslin = 0_1_1-build726/QuickStart/Linux/julius-3.5.2-quickstart-linux 
     85Julius-3.5.2-Quickstart-Linux_build726.tgz : $(qslin) $(qslin)/acoustic_model_files $(qslin)/bin $(qslin)/doc $(qslin)/etc $(qslin)/grammar $(qslin)/julius_docs 
     86        cd $< && tar --exclude=.svn -zcvf  $(TARGET)/0_1_1-build726/$@ *         
     87qswin = 0_1_1-build726/QuickStart/Windows/julius-3.5.2-quickstart-windows 
     88Julius-3.5.2-Quickstart-Windows_build726.zip : $(qswin) $(qswin)/acoustic_model_files $(qswin)/bin  $(qswin)/cygwin $(qswin)/doc $(qswin)/etc $(qswin)/grammar $(qswin)/julius_docs 
     89        cd $(<) && zip $(TARGET)/0_1_1-build726/$@ * acoustic_model_files/* bin/* cygwin/* doc/* etc/* grammar/* julius_docs/* 
    5390 
    5491release = 0_1alpha-build233 
  • VoxForge/Trunk/Scripts/Mirroring_scripts/Scripts_makefile

    r913 r1014  
     1#################################################################### 
     2### 
     3### script name: Scripts_makefile 
     4### modified by: Ken MacLean 
     5### email: contact@voxforge.org 
     6### Date: 2006.12.28 
     7### Command: make -f Scripts_makefile 
     8### Version: 0.1 
     9###              
     10### Copyright (C) 2006 Ken MacLean 
     11### 
     12### This program is free software; you can redistribute it and/or 
     13### modify it under the terms of the GNU General Public License 
     14### as published by the Free Software Foundation; either version 2 
     15### of the License, or (at your option) any later version. 
     16### 
     17### This program is distributed in the hope that it will be useful, 
     18### but WITHOUT ANY WARRANTY; without even the implied warranty of 
     19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     20### GNU General Public License for more details. 
     21### 
     22#################################################################### 
    123SOURCE = ../../Scripts 
    224TARGET = /data/svn-tarfiles/Trunk/Scripts