ise_wizard Unix shell scripts
This commit is contained in:
committed by
Jocelyn Fiat
parent
a6ca54f958
commit
4ed8365afe
15
tools/ise_wizard/install_ise_wizard.sh
Executable file
15
tools/ise_wizard/install_ise_wizard.sh
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
mkdir tmp
|
||||||
|
ecb -config ewf_ise_wizard-safe.ecf -target wizard -finalize -c_compile -project_path tmp
|
||||||
|
mkdir -p spec/$ISE_PLATFORM
|
||||||
|
mv tmp/EIFGENs/wizard/F_code/wizard spec/$ISE_PLATFORM/wizard
|
||||||
|
rm -rf tmp
|
||||||
|
|
||||||
|
WIZ_TARGET=$ISE_EIFFEL/studio/wizards/new_projects/ewf
|
||||||
|
rm -rf $WIZ_TARGET
|
||||||
|
mkdir $WIZ_TARGET
|
||||||
|
cp -r resources $WIZ_TARGET/resources
|
||||||
|
cp -r spec $WIZ_TARGET/spec
|
||||||
|
cp ewf.dsc $WIZ_TARGET/../ewf.dsc
|
||||||
|
rm -rf spec
|
||||||
16
tools/ise_wizard/install_ise_wizard_custom.sh
Executable file
16
tools/ise_wizard/install_ise_wizard_custom.sh
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
mkdir tmp
|
||||||
|
ecb -config ewf_ise_wizard-safe.ecf -target custom_wizard -finalize -c_compile -project_path tmp
|
||||||
|
mkdir -p custom/spec/$ISE_PLATFORM
|
||||||
|
mv tmp/EIFGENs/custom_wizard/F_code/wizard custom/spec/$ISE_PLATFORM/wizard
|
||||||
|
rm -rf tmp
|
||||||
|
|
||||||
|
WIZ_TARGET=$ISE_EIFFEL/studio/wizards/new_projects/ewf_custom
|
||||||
|
rm -rf $WIZ_TARGET
|
||||||
|
mkdir $WIZ_TARGET
|
||||||
|
cp -r resources $WIZ_TARGET/resources
|
||||||
|
cp -f custom/resources/* $WIZ_TARGET/resources
|
||||||
|
cp -r custom/spec $WIZ_TARGET/spec
|
||||||
|
cp custom/ewf.dsc $WIZ_TARGET/../ewf_custom.dsc
|
||||||
|
rm -rf custom/spec
|
||||||
Reference in New Issue
Block a user