Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Cleanup Cmake and add autoconf build system
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
- Loading branch information
Showing
with
128 additions
and 4,773 deletions.
- +26 −6 .gitignore
- +0 −105 .uncrustify.cfg
- 0 AUTHORS
- +0 −229 CMakeLists.txt
- +0 −17 HOWTO_PACKAGE
- +8 −0 Makefile.am
- +0 −7 Packaging-DEB.cmake
- +0 −23 Packaging-RPM.cmake
- +0 −42 Packaging.cmake
- +0 −85 README
- +0 −3 README.irssi-headers
- +4 −0 README.md
- +0 −9 README.xchat
- +10 −0 bootstrap
- +0 −22 cmake-extensions/COPYING-CMAKE-SCRIPTS
- +0 −52 cmake-extensions/FindLibGcrypt.cmake
- +0 −49 cmake-extensions/FindLibOTR.cmake
- +0 −20 cmake-extensions/Git.cmake
- +0 −17 cmake-extensions/cscope.cmake
- +80 −0 configure.ac
- +0 −104 formats.txt
- +0 −4 io-config.h.in
- +0 −64 io_set.c
- +0 −349 io_util.c
- +0 −68 irssi/CMakeLists.txt
- +0 −374 irssi/irssi_otr.c
- +0 −91 irssi/irssi_otr.h
- +0 −130 makeformats.py
- +0 −17 mksrcpackage.sh
- +0 −269 otr.h
- +0 −364 otr_key.c
- +0 −398 otr_ops.c
- +0 −915 otr_util.c
- +0 −1 weechat/.gitignore
- +0 −37 weechat/CMakeLists.txt
- +0 −377 weechat/weechat_otr.c
- +0 −158 weechat/weechat_otr.h
- +0 −35 xchat/CMakeLists.txt
- +0 −246 xchat/xchat_otr.c
- +0 −86 xchat/xchat_otr.h
@@ -1,9 +1,29 @@ | ||
*.o | ||
*.so | ||
term.h | ||
statusbar.h | ||
mainwindows.h | ||
.exrc | ||
*.swp | ||
cscope.files | ||
cscope.out | ||
*.o | ||
*.swo | ||
*.pyc | ||
Makefile | ||
.libs/ | ||
.deps/ | ||
*~ | ||
*.la | ||
*.lo | ||
Makefile.in | ||
*.loT | ||
*.info | ||
*.bz2 | ||
*.tar | ||
configure | ||
aclocal.m4 | ||
autom4te.cache/ | ||
config.h | ||
config.h.in | ||
config.log | ||
config.status | ||
stamp-h1 | ||
libtool | ||
tags | ||
|
||
config/ |
Empty file.
@@ -0,0 +1,8 @@ | ||
AM_CFLAGS = $(PACKAGE_CFLAGS) | ||
|
||
ACLOCAL_AMFLAGS = -I config | ||
|
||
SUBDIRS = src | ||
|
||
dist_doc_DATA = LICENSE \ | ||
ChangeLog |
Oops, something went wrong.