Hi I am trying to compile the library libdvbpsi with a new table that I have attached to be able to use it in vlc.
I have attached the new table in src/tables directory, i.e., newtable.c, newtable.h, newtable_private.h. I have modified the makefile.am (->src/) attaching the new table data. My configure scripts is :
./configure \
--prefix=/usr \
--enable-release \
--enable-debug
Then I run the script and all runs well. The problem is at the time to run the make which tell me:
make all-recursive
make[1]: Entering directory '/cygdrive/c/downloads/Prueba 3/libdvbpsi5-0.1.6'
Making all in src
make[2]: Entering directory '/cygdrive/c/downloads/Prueba 3/libdvbpsi5-0.1.6/src'
make[2]: *** No rule to make target 'tables.newtable.h', needed by 'all-am'. Stop.
make[2]: Leaving directory '/cygdrive/c/downloads/Prueba 3/libdvbpsi5-0.1.6/src'
...
I have been trying to understand what suppose this error of "No rule..." but I haven´t achieved to know how to solve it.
Anybody could help me?
Thanks.