Skip to content
Snippets Groups Projects
Commit bd3bc1a5 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Add an autogen script on client and server side

Just have to run it and then make
parent 5ac80930
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
# could be replaced with autoconf -v -f (verbose, force rebuild of ltmain, .in files, etc.)
aclocal -I m4
libtoolize --force
autoheader
autoconf -f
automake -a
./configure --prefix=/usr --with-debug
#!/bin/sh
# could be replaced with autoconf -v -f (verbose, force rebuild of ltmain, .in files, etc.)
aclocal -I m4
libtoolize --force
autoheader
autoconf -f
automake -a
./configure --prefix=/usr --with-debug
......@@ -15,7 +15,7 @@ AC_ARG_WITH(debug,
[with_debug=no]
)
if test "x$with_debug" = "xfull" -o "x$with_debug" = "xyes"; then
CFLAGS="$CFLAGS -g -DDEBUG -Wall -Werror "
CFLAGS="$CFLAGS -g -DDEBUG -Wall"
fi
AC_PROG_CC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment