Skip to content

Commit

Permalink
devs/seoz build.sh: Moved ephysics as e depent option. Added uninstal…
Browse files Browse the repository at this point in the history
…l function.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk@75024 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33
  • Loading branch information
seoz committed Aug 9, 2012
1 parent 95a9ee9 commit 0a4d789
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions devs/seoz/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export CFLAGS="-O2 -march=native -ffast-math -g3 -W -Wall -Wextra" # -Wshadow"
export CC="ccache gcc"
alias make='make -j6'

export BUILD_E_OPTION="eeze"
export BUILD_E_OPTION="eeze ephysics"
export BUILD_ETHUMB_OPTION="PROTO/epdf"
export BUILD_ELM_OPTION="PROTO/emap"
export BUILD_BASIC1="eina eet"
Expand All @@ -25,7 +25,7 @@ export BUILD_PYTHON_BINDINGS="BINDINGS/python/python-evas BINDINGS/python/python
export BUILD_CPP_BINDINGS="BINDINGS/cxx/eflxx BINDINGS/cxx/einaxx BINDINGS/cxx/evasxx BINDINGS/cxx/ecorexx BINDINGS/cxx/edjexx BINDINGS/cxx/elementaryxx"
export BUILD_BINDINGS=$BUILD_PYTHON_BINDINGS" "$BUILD_C_BINDINGS" "
export BUILD_E_MODULES="E-MODULES-EXTRA/comp-scale E-MODULES-EXTRA/elfe E-MODULES-EXTRA/engage E-MODULES-EXTRA/everything-shotgun"
export BUILD_ETC="terminology ephysics exactness editje PROTO/eyelight FORMATTING/ecrustify ephoto edje_viewer PROTO/emap PROTO/azy elmdentica enlil PROTO/emote emprint clouseau PROTO/enna-explorer envision ensure enjoy exquisite rage PROTO/efx PROTO/eyesight"
export BUILD_ETC="terminology exactness editje PROTO/eyelight FORMATTING/ecrustify ephoto edje_viewer PROTO/emap PROTO/azy elmdentica enlil PROTO/emote emprint clouseau PROTO/enna-explorer envision ensure enjoy exquisite rage PROTO/efx PROTO/eyesight"
export BUILD_EXAMPLE="EXAMPLES/elementary/calculator EXAMPLES/elementary/converter EXAMPLES/elementary/phonebook EXAMPLES/elementary/sticky-notes"
export BUILD_ETC2="excessive enki ecrire espionnage evas_generic_loaders"

Expand Down Expand Up @@ -56,6 +56,16 @@ function build()
done
}

function uninstall()
{
build_dir=$1
for I in $build_dir; do
pushd $I
sudo make uninstall
popd
done
}

build "$BUILD_BASIC1" --disable-doc
build evas --disable-cpu-sse3 --disable-doc
build "$BUILD_BASIC2" --disable-doc
Expand Down

0 comments on commit 0a4d789

Please sign in to comment.