19 lines
414 B
PHP
19 lines
414 B
PHP
# Rules for compiling .cfgs from .xmls
|
|
# could these be moved into common.inc?
|
|
.SUFFIXES: .cfg .h .xml
|
|
|
|
$(O)\_common.ver: verconv.pl $(SDK_INC_PATH)\common.ver
|
|
perl -n $** > $@
|
|
|
|
.xml{$(O)}.cfg:
|
|
copy $** $(O)
|
|
$(SPEECH_ROOT)\sapi\tools\bin\gc.exe -h $*.h $*.xml
|
|
|
|
!if defined(MAKEDLL)
|
|
# Self-register
|
|
itngram_chs.cpy: $(O)\itngram.dll
|
|
regsvr32 /s $** > $@
|
|
!else
|
|
itngram_chs.cpy:
|
|
!endif
|