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

2007-06-09 Thread H. Hübel
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 examples from this site. i use Linux (openSuse

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 in the