Skip to content

Commit 1aca6e6

Browse files
author
gasmibal@gmail.com
committed
Add CLI support for Easy SIP
Defautl Port 8008 using telnet command we can access the cli from remote host
1 parent 69b32ad commit 1aca6e6

20 files changed

+1804
-924
lines changed

Makefile.in

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Makefile.in generated by automake 1.14 from Makefile.am.
1+
# Makefile.in generated by automake 1.14.1 from Makefile.am.
22
# @configure_input@
33

44
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
@@ -580,9 +580,10 @@ distcheck: dist
580580
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
581581
&& am__cwd=`pwd` \
582582
&& $(am__cd) $(distdir)/_build \
583-
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
583+
&& ../configure \
584584
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
585585
$(DISTCHECK_CONFIGURE_FLAGS) \
586+
--srcdir=.. --prefix="$$dc_install_base" \
586587
&& $(MAKE) $(AM_MAKEFLAGS) \
587588
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
588589
&& $(MAKE) $(AM_MAKEFLAGS) check \

aclocal.m4

+3-43
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# generated automatically by aclocal 1.14 -*- Autoconf -*-
1+
# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
22

33
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
44

@@ -180,46 +180,6 @@ else
180180
fi[]dnl
181181
])# PKG_CHECK_MODULES
182182

183-
184-
# PKG_INSTALLDIR(DIRECTORY)
185-
# -------------------------
186-
# Substitutes the variable pkgconfigdir as the location where a module
187-
# should install pkg-config .pc files. By default the directory is
188-
# $libdir/pkgconfig, but the default can be changed by passing
189-
# DIRECTORY. The user can override through the --with-pkgconfigdir
190-
# parameter.
191-
AC_DEFUN([PKG_INSTALLDIR],
192-
[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
193-
m4_pushdef([pkg_description],
194-
[pkg-config installation directory @<:@]pkg_default[@:>@])
195-
AC_ARG_WITH([pkgconfigdir],
196-
[AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
197-
[with_pkgconfigdir=]pkg_default)
198-
AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
199-
m4_popdef([pkg_default])
200-
m4_popdef([pkg_description])
201-
]) dnl PKG_INSTALLDIR
202-
203-
204-
# PKG_NOARCH_INSTALLDIR(DIRECTORY)
205-
# -------------------------
206-
# Substitutes the variable noarch_pkgconfigdir as the location where a
207-
# module should install arch-independent pkg-config .pc files. By
208-
# default the directory is $datadir/pkgconfig, but the default can be
209-
# changed by passing DIRECTORY. The user can override through the
210-
# --with-noarch-pkgconfigdir parameter.
211-
AC_DEFUN([PKG_NOARCH_INSTALLDIR],
212-
[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
213-
m4_pushdef([pkg_description],
214-
[pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
215-
AC_ARG_WITH([noarch-pkgconfigdir],
216-
[AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
217-
[with_noarch_pkgconfigdir=]pkg_default)
218-
AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
219-
m4_popdef([pkg_default])
220-
m4_popdef([pkg_description])
221-
]) dnl PKG_NOARCH_INSTALLDIR
222-
223183
# Copyright (C) 2002-2013 Free Software Foundation, Inc.
224184
#
225185
# This file is free software; the Free Software Foundation
@@ -235,7 +195,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
235195
[am__api_version='1.14'
236196
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
237197
dnl require some minimum version. Point them to the right macro.
238-
m4_if([$1], [1.14], [],
198+
m4_if([$1], [1.14.1], [],
239199
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
240200
])
241201

@@ -251,7 +211,7 @@ m4_define([_AM_AUTOCONF_VERSION], [])
251211
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
252212
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
253213
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
254-
[AM_AUTOMAKE_VERSION([1.14])dnl
214+
[AM_AUTOMAKE_VERSION([1.14.1])dnl
255215
m4_ifndef([AC_AUTOCONF_VERSION],
256216
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
257217
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])

configure

+120-17
Original file line numberDiff line numberDiff line change
@@ -1628,6 +1628,97 @@ fi
16281628
16291629
} # ac_fn_c_try_run
16301630
1631+
# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
1632+
# -------------------------------------------------------
1633+
# Tests whether HEADER exists, giving a warning if it cannot be compiled using
1634+
# the include files in INCLUDES and setting the cache variable VAR
1635+
# accordingly.
1636+
ac_fn_c_check_header_mongrel ()
1637+
{
1638+
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1639+
if eval \${$3+:} false; then :
1640+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1641+
$as_echo_n "checking for $2... " >&6; }
1642+
if eval \${$3+:} false; then :
1643+
$as_echo_n "(cached) " >&6
1644+
fi
1645+
eval ac_res=\$$3
1646+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1647+
$as_echo "$ac_res" >&6; }
1648+
else
1649+
# Is the header compilable?
1650+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
1651+
$as_echo_n "checking $2 usability... " >&6; }
1652+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1653+
/* end confdefs.h. */
1654+
$4
1655+
#include <$2>
1656+
_ACEOF
1657+
if ac_fn_c_try_compile "$LINENO"; then :
1658+
ac_header_compiler=yes
1659+
else
1660+
ac_header_compiler=no
1661+
fi
1662+
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1663+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
1664+
$as_echo "$ac_header_compiler" >&6; }
1665+
1666+
# Is the header present?
1667+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
1668+
$as_echo_n "checking $2 presence... " >&6; }
1669+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1670+
/* end confdefs.h. */
1671+
#include <$2>
1672+
_ACEOF
1673+
if ac_fn_c_try_cpp "$LINENO"; then :
1674+
ac_header_preproc=yes
1675+
else
1676+
ac_header_preproc=no
1677+
fi
1678+
rm -f conftest.err conftest.i conftest.$ac_ext
1679+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
1680+
$as_echo "$ac_header_preproc" >&6; }
1681+
1682+
# So? What about this header?
1683+
case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
1684+
yes:no: )
1685+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
1686+
$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
1687+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
1688+
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1689+
;;
1690+
no:yes:* )
1691+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
1692+
$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
1693+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
1694+
$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
1695+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
1696+
$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
1697+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
1698+
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
1699+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
1700+
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1701+
( $as_echo "## --------------------------------- ##
1702+
## Report this to gasmibal@gmail.com ##
1703+
## --------------------------------- ##"
1704+
) | sed "s/^/$as_me: WARNING: /" >&2
1705+
;;
1706+
esac
1707+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1708+
$as_echo_n "checking for $2... " >&6; }
1709+
if eval \${$3+:} false; then :
1710+
$as_echo_n "(cached) " >&6
1711+
else
1712+
eval "$3=\$ac_header_compiler"
1713+
fi
1714+
eval ac_res=\$$3
1715+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1716+
$as_echo "$ac_res" >&6; }
1717+
fi
1718+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1719+
1720+
} # ac_fn_c_check_header_mongrel
1721+
16311722
# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
16321723
# -------------------------------------------------------
16331724
# Tests whether HEADER exists and can be compiled using the include files in
@@ -4786,6 +4877,35 @@ $as_echo "yes" >&6; }
47864877
fi
47874878
47884879
# Checks for header files.
4880+
# On IRIX 5.3, sys/types and inttypes.h are conflicting.
4881+
for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
4882+
inttypes.h stdint.h unistd.h
4883+
do :
4884+
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
4885+
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
4886+
"
4887+
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
4888+
cat >>confdefs.h <<_ACEOF
4889+
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
4890+
_ACEOF
4891+
4892+
fi
4893+
4894+
done
4895+
4896+
4897+
for ac_header in libcli.h
4898+
do :
4899+
ac_fn_c_check_header_mongrel "$LINENO" "libcli.h" "ac_cv_header_libcli_h" "$ac_includes_default"
4900+
if test "x$ac_cv_header_libcli_h" = xyes; then :
4901+
cat >>confdefs.h <<_ACEOF
4902+
#define HAVE_LIBCLI_H 1
4903+
_ACEOF
4904+
4905+
fi
4906+
4907+
done
4908+
47894909
47904910
# Checks for typedefs, structures, and compiler characteristics.
47914911
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5
@@ -4944,23 +5064,6 @@ _ACEOF
49445064
;;
49455065
esac
49465066
4947-
# On IRIX 5.3, sys/types and inttypes.h are conflicting.
4948-
for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
4949-
inttypes.h stdint.h unistd.h
4950-
do :
4951-
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
4952-
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
4953-
"
4954-
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
4955-
cat >>confdefs.h <<_ACEOF
4956-
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
4957-
_ACEOF
4958-
4959-
fi
4960-
4961-
done
4962-
4963-
49645067
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
49655068
$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
49665069
if ${ac_cv_c_bigendian+:} false; then :

configure.ac

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ PKG_CHECK_MODULES([LIBEVENT], [libevent])
1414
PKG_CHECK_MODULES([OSIP2], [libosip2])
1515

1616
# Checks for header files.
17+
AC_CHECK_HEADERS([libcli.h], [])
1718

1819
# Checks for typedefs, structures, and compiler characteristics.
1920
AC_TYPE_SIGNAL

src/Makefile.am

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ bin_PROGRAMS = esip
44
AM_CPPFLAGS = -g -Wall
55
AM_CFLAGS = -g -Wall -O
66

7-
esip_SOURCES = esip.c eslog.c sip/estransport.c sip/esosip.c
8-
esip_LDADD = $(OSIP2_LIBS) $(LIBEVENT_LIBS)
7+
esip_SOURCES = esip.c eslog.c cli/escli.c sip/estransport.c sip/esosip.c
8+
esip_LDADD = $(OSIP2_LIBS) $(LIBEVENT_LIBS) -lcli -lpthread
99
esip_CFLAGS = $(OSIP2_CFLAGS) $(LIBEVENT_CFLAGS)

src/Makefile.in

+33-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Makefile.in generated by automake 1.14 from Makefile.am.
1+
# Makefile.in generated by automake 1.14.1 from Makefile.am.
22
# @configure_input@
33

44
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
@@ -92,7 +92,8 @@ am__installdirs = "$(DESTDIR)$(bindir)"
9292
PROGRAMS = $(bin_PROGRAMS)
9393
am__dirstamp = $(am__leading_dot)dirstamp
9494
am_esip_OBJECTS = esip-esip.$(OBJEXT) esip-eslog.$(OBJEXT) \
95-
sip/esip-estransport.$(OBJEXT) sip/esip-esosip.$(OBJEXT)
95+
cli/esip-escli.$(OBJEXT) sip/esip-estransport.$(OBJEXT) \
96+
sip/esip-esosip.$(OBJEXT)
9697
esip_OBJECTS = $(am_esip_OBJECTS)
9798
am__DEPENDENCIES_1 =
9899
esip_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
@@ -258,8 +259,8 @@ top_srcdir = @top_srcdir@
258259
AUTOMAKE_OPTIONS = foreign subdir-objects
259260
AM_CPPFLAGS = -g -Wall
260261
AM_CFLAGS = -g -Wall -O
261-
esip_SOURCES = esip.c eslog.c sip/estransport.c sip/esosip.c
262-
esip_LDADD = $(OSIP2_LIBS) $(LIBEVENT_LIBS)
262+
esip_SOURCES = esip.c eslog.c cli/escli.c sip/estransport.c sip/esosip.c
263+
esip_LDADD = $(OSIP2_LIBS) $(LIBEVENT_LIBS) -lcli -lpthread
263264
esip_CFLAGS = $(OSIP2_CFLAGS) $(LIBEVENT_CFLAGS)
264265
all: all-am
265266

@@ -337,6 +338,14 @@ uninstall-binPROGRAMS:
337338

338339
clean-binPROGRAMS:
339340
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
341+
cli/$(am__dirstamp):
342+
@$(MKDIR_P) cli
343+
@: > cli/$(am__dirstamp)
344+
cli/$(DEPDIR)/$(am__dirstamp):
345+
@$(MKDIR_P) cli/$(DEPDIR)
346+
@: > cli/$(DEPDIR)/$(am__dirstamp)
347+
cli/esip-escli.$(OBJEXT): cli/$(am__dirstamp) \
348+
cli/$(DEPDIR)/$(am__dirstamp)
340349
sip/$(am__dirstamp):
341350
@$(MKDIR_P) sip
342351
@: > sip/$(am__dirstamp)
@@ -354,13 +363,15 @@ esip$(EXEEXT): $(esip_OBJECTS) $(esip_DEPENDENCIES) $(EXTRA_esip_DEPENDENCIES)
354363

355364
mostlyclean-compile:
356365
-rm -f *.$(OBJEXT)
366+
-rm -f cli/*.$(OBJEXT)
357367
-rm -f sip/*.$(OBJEXT)
358368

359369
distclean-compile:
360370
-rm -f *.tab.c
361371

362372
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esip-esip.Po@am__quote@
363373
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esip-eslog.Po@am__quote@
374+
@AMDEP_TRUE@@am__include@ @am__quote@cli/$(DEPDIR)/esip-escli.Po@am__quote@
364375
@AMDEP_TRUE@@am__include@ @am__quote@sip/$(DEPDIR)/esip-esosip.Po@am__quote@
365376
@AMDEP_TRUE@@am__include@ @am__quote@sip/$(DEPDIR)/esip-estransport.Po@am__quote@
366377

@@ -408,6 +419,20 @@ esip-eslog.obj: eslog.c
408419
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
409420
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(esip_CFLAGS) $(CFLAGS) -c -o esip-eslog.obj `if test -f 'eslog.c'; then $(CYGPATH_W) 'eslog.c'; else $(CYGPATH_W) '$(srcdir)/eslog.c'; fi`
410421

422+
cli/esip-escli.o: cli/escli.c
423+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(esip_CFLAGS) $(CFLAGS) -MT cli/esip-escli.o -MD -MP -MF cli/$(DEPDIR)/esip-escli.Tpo -c -o cli/esip-escli.o `test -f 'cli/escli.c' || echo '$(srcdir)/'`cli/escli.c
424+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cli/$(DEPDIR)/esip-escli.Tpo cli/$(DEPDIR)/esip-escli.Po
425+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cli/escli.c' object='cli/esip-escli.o' libtool=no @AMDEPBACKSLASH@
426+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
427+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(esip_CFLAGS) $(CFLAGS) -c -o cli/esip-escli.o `test -f 'cli/escli.c' || echo '$(srcdir)/'`cli/escli.c
428+
429+
cli/esip-escli.obj: cli/escli.c
430+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(esip_CFLAGS) $(CFLAGS) -MT cli/esip-escli.obj -MD -MP -MF cli/$(DEPDIR)/esip-escli.Tpo -c -o cli/esip-escli.obj `if test -f 'cli/escli.c'; then $(CYGPATH_W) 'cli/escli.c'; else $(CYGPATH_W) '$(srcdir)/cli/escli.c'; fi`
431+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cli/$(DEPDIR)/esip-escli.Tpo cli/$(DEPDIR)/esip-escli.Po
432+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cli/escli.c' object='cli/esip-escli.obj' libtool=no @AMDEPBACKSLASH@
433+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
434+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(esip_CFLAGS) $(CFLAGS) -c -o cli/esip-escli.obj `if test -f 'cli/escli.c'; then $(CYGPATH_W) 'cli/escli.c'; else $(CYGPATH_W) '$(srcdir)/cli/escli.c'; fi`
435+
411436
sip/esip-estransport.o: sip/estransport.c
412437
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(esip_CFLAGS) $(CFLAGS) -MT sip/esip-estransport.o -MD -MP -MF sip/$(DEPDIR)/esip-estransport.Tpo -c -o sip/esip-estransport.o `test -f 'sip/estransport.c' || echo '$(srcdir)/'`sip/estransport.c
413438
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sip/$(DEPDIR)/esip-estransport.Tpo sip/$(DEPDIR)/esip-estransport.Po
@@ -551,6 +576,8 @@ clean-generic:
551576
distclean-generic:
552577
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
553578
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
579+
-rm -f cli/$(DEPDIR)/$(am__dirstamp)
580+
-rm -f cli/$(am__dirstamp)
554581
-rm -f sip/$(DEPDIR)/$(am__dirstamp)
555582
-rm -f sip/$(am__dirstamp)
556583

@@ -562,7 +589,7 @@ clean: clean-am
562589
clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
563590

564591
distclean: distclean-am
565-
-rm -rf ./$(DEPDIR) sip/$(DEPDIR)
592+
-rm -rf ./$(DEPDIR) cli/$(DEPDIR) sip/$(DEPDIR)
566593
-rm -f Makefile
567594
distclean-am: clean-am distclean-compile distclean-generic \
568595
distclean-tags
@@ -608,7 +635,7 @@ install-ps-am:
608635
installcheck-am:
609636

610637
maintainer-clean: maintainer-clean-am
611-
-rm -rf ./$(DEPDIR) sip/$(DEPDIR)
638+
-rm -rf ./$(DEPDIR) cli/$(DEPDIR) sip/$(DEPDIR)
612639
-rm -f Makefile
613640
maintainer-clean-am: distclean-am maintainer-clean-generic
614641

0 commit comments

Comments
 (0)