givup "Directory $extname already exists."
fi
+test -f ext_skel || givup "ext_skel must be in the current directory"
+
if echo '\c' | grep -s c >/dev/null 2>&1
then
ECHO_N="echo -n"
dnl config.m4 for extension $extname
dnl don't forget to call PHP_EXTENSION($extname)
+PHP_EXTENSION($extname)
+
eof
$ECHO_N " Makefile.am$ECHO_C"
.deps
Makefile.in
Makefile
+*.o
*.lo
*.la
.libs
echo " [done]."
+cat <<eof
+
+To use your new extension, you will have to execute the following steps:
+
+ $ cd ..
+ $ ./buildconf
+ $ ./configure (your extension is automatically enabled)
+ $ vi ext/$extname/$extname.c
+ $ make
+
+Repeat the last two steps as often as necessary.
+
+eof