Re: [PHP] php-compile error: No rule to make target

2007-06-09 Thread H. Hübel
Hi Daniel >That's a bit out of the scope of this list, but a simple fix > anyway. Change config.m4: > PHP_NEW_EXTENSION(hello, hello.c, $ext_shared) > > to > PHP_NEW_EXTENSION(hello, php_hello.c, $ext_shared) > Thank you very much! You made my day :) it was the wrong filename

Re: [PHP] php-compile error: No rule to make target

2007-06-09 Thread Daniel Brown
On 6/9/07, "H. Hübel" <[EMAIL PROTECTED]> wrote: Hello everyone for learning to develope an own external php-extension i studied the following session under http://devzone.zend.com/article/1021-Extension-Writing-Part-I-Introduction-to-PHP-and-Zend and tried to develope my first extension as the