From: Sascha Schumann Date: Wed, 6 Oct 1999 14:41:36 +0000 (+0000) Subject: Fix "make clean". automake does not define an extra target for clean. X-Git-Tag: php-4.0b3_RC2~292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf6182751826bf9c663214adf840eb21b724798f;p=php Fix "make clean". automake does not define an extra target for clean. --- diff --git a/ext/informix/Makefile.am b/ext/informix/Makefile.am index 2cafd8c3c2..28f6af8e48 100644 --- a/ext/informix/Makefile.am +++ b/ext/informix/Makefile.am @@ -4,6 +4,8 @@ INCLUDES=@INCLUDES@ -I@top_srcdir@ -I@top_srcdir@/libzend noinst_LTLIBRARIES=libphpext_informix.la libphpext_informix_la_SOURCES=ifx.c +CLEANFILES = ifx.c + ifx.c: ifx.ec (if test -d @INFORMIXDIR@; then \ esql -e @IFX_ESQL_FLAGS@ ifx.ec; \ @@ -11,5 +13,3 @@ ifx.c: ifx.ec touch ifx.c; \ fi) -clean: - -rm -f ifx.c