0.8.6claws41
authorChristoph Hohmann <reboot@gmx.ch>
Sat, 30 Nov 2002 17:26:51 +0000 (17:26 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Sat, 30 Nov 2002 17:26:51 +0000 (17:26 +0000)
* src/common                    ** NEW **
        new directory for UI independent code
* src/gtk                       ** NEW **
        new directory for GTK frontend
* src/common/.cvsignore         ** NEW **
* src/gtk/.cvsignore            ** NEW **
        ignore build files
* src/common/Makefile.am        ** NEW **
* src/gtk/Makefile.am           ** NEW **
        automake files to build new seperated stuff
* src/Makefile.am
        the binary will currently still be build with the
        files in src, so we include the code from the
        subdirs for now after building the libs there

ChangeLog.claws
configure.in
src/Makefile.am
src/common/.cvsignore [new file with mode: 0644]
src/common/Makefile.am [new file with mode: 0644]
src/gtk/.cvsignore [new file with mode: 0644]
src/gtk/Makefile.am [new file with mode: 0644]

index 0849e7f2e11369e1e0aecfca1c1ebdfb06c52266..79a141dbcf4664026e30b4f7dd7e894a0ed620a3 100644 (file)
@@ -1,3 +1,20 @@
+2002-11-30 [christoph] 0.8.6claws41
+
+       * src/common                    ** NEW **
+               new directory for UI independent code
+       * src/gtk                       ** NEW **
+               new directory for GTK frontend
+       * src/common/.cvsignore         ** NEW **
+       * src/gtk/.cvsignore            ** NEW **
+               ignore build files
+       * src/common/Makefile.am        ** NEW **
+       * src/gtk/Makefile.am           ** NEW **
+               automake files to build new seperated stuff
+       * src/Makefile.am
+               the binary will currently still be build with the
+               files in src, so we include the code from the
+               subdirs for now after building the libs there
+
 2002-11-30 [paul]      0.8.6claws40
 
        * src/compose.c
index d52aca33ed5d4f3159c7f5a4a544b333c4ce898a..e007dfe954f41405bd68aebf3f09e5b36d0aef98 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=6
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws40
+EXTRA_VERSION=claws41
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
@@ -381,6 +381,8 @@ ac/Makefile
 po/Makefile.in
 src/version.h
 src/Makefile
+src/common/Makefile
+src/gtk/Makefile
 faq/Makefile
 faq/de/Makefile
 faq/en/Makefile
index 5453e182bb5c1dc653b2e4f6709c30caf758f4ce..490e7c62992a87beb059117704b596289cedd638 100644 (file)
@@ -1,3 +1,5 @@
+SUBDIRS = common gtk
+
 bin_PROGRAMS = sylpheed
 
 sylpheed_SOURCES = \
@@ -229,6 +231,7 @@ INCLUDES = \
        -I$(includedir)
 
 sylpheed_LDADD = \
+       gtk/libsylpheedgtk.la \
        $(INTLLIBS) \
        $(ASPELL_LIBS) \
        $(GTK_LIBS) \
diff --git a/src/common/.cvsignore b/src/common/.cvsignore
new file mode 100644 (file)
index 0000000..2a6ab49
--- /dev/null
@@ -0,0 +1,7 @@
+.deps
+.libs
+Makefile
+Makefile.in
+*.o
+*.lo
+*.la
diff --git a/src/common/Makefile.am b/src/common/Makefile.am
new file mode 100644 (file)
index 0000000..f974325
--- /dev/null
@@ -0,0 +1,3 @@
+noinst_LTLIBRARIES = libsylpheedcommon.la
+
+libsylpheedcommon_la_SOURCES =
diff --git a/src/gtk/.cvsignore b/src/gtk/.cvsignore
new file mode 100644 (file)
index 0000000..2a6ab49
--- /dev/null
@@ -0,0 +1,7 @@
+.deps
+.libs
+Makefile
+Makefile.in
+*.o
+*.lo
+*.la
diff --git a/src/gtk/Makefile.am b/src/gtk/Makefile.am
new file mode 100644 (file)
index 0000000..0e8830f
--- /dev/null
@@ -0,0 +1,5 @@
+noinst_LTLIBRARIES = libsylpheedgtk.la
+
+libsylpheedgtk_la_SOURCES = 
+
+libsylpheedgtk_la_LIBADD = ../common/libsylpheedcommon.la