I think i got it
I have the same Android.mk file earlier in the vendor/videon/player
directory
My problem was that when i do a "make libvideonplayer" the player gets
built
but when i do a plain "make" then the libvideonplayer target is not
picked up
According to android/build/core/build-system.html (I think this file
is only available with GTV distro)
--A plain "make" is the same as "make eng". droid is an alias for
eng.--
so instead for running just "make" i could be having "make droid
libvideonplayer" which serves my purpose.
Although i think this is a workaround. I think android should have a
list of target before and after the main installation.
This way we could pump our custom targets.
> Hi
> If Android.mk is not picked form top file, you can add an Android.mk
> containing below include command at android/vendor/videon/ level.
> include $(call first-makefiles-under,$(call my-dir))