tidied up m_relay.c
[ircu2.10.12-pk.git] / clean
1 #!/bin/sh
2
3 if [ -f "LICENSE" ] ; then
4   HASH=`md5sum LICENSE | awk '{print $1}'`
5   if [ "x$HASH" = "xda10ed7cf8038981c580e11c1d3e8fb6" ] ; then
6     rm -vf ircd/*.o
7     rm "-vfR" "configure" "Makefile" "doc/Makefile" "ircd/Makefile" "ircd/version.c" "config.log" "config.status" "config.h" "config.h.in" "autom4te.cache" "stamp-h" "aclocal.m4" "ircd/umkpasswd" "ircd/table_gen" "ircd/ircd" "ircd/chattr.tab.c" "ircd/lex.yy.c" "ircd/y.tab.h" "ircd/y.tab.c" ircd/*.orig
8   else
9     echo "You need to be in the ircu-core directory where the configure.in file lies."
10   fi
11 fi
12