- prepare location for ui specific stuff
authorMichael Andres <ma@suse.de>
Wed, 1 Feb 2006 15:35:26 +0000 (15:35 +0000)
committerMichael Andres <ma@suse.de>
Wed, 1 Feb 2006 15:35:26 +0000 (15:35 +0000)
configure.ac
zypp/Makefile.am
zypp/ui/.cvsignore [new file with mode: 0644]
zypp/ui/Makefile.am [new file with mode: 0644]

index f44d30c70b06ed37b9cc05c79eb31c6558ffe7ca..b52c46bbcd9014b100669a19c580063fd8e3d4c2 100644 (file)
@@ -246,6 +246,7 @@ AC_OUTPUT(   po/Makefile.in\
        zypp/source/yum/Makefile        \
        zypp/media/Makefile             \
        zypp/media/proxyinfo/Makefile   \
+       zypp/ui/Makefile                \
        zypp/url/Makefile               \
        zypp/target/Makefile            \
        zypp/target/rpm/Makefile        \
index 1cf8c807b493e9aa4af13ae48631204cc9368999..a4d1089fa5943e76d94d4e9fc675f0983a7a1b00 100644 (file)
@@ -2,7 +2,7 @@
 ## ##################################################
 
 SUBDIRS = base thread url media capability detail pool parser \
-       source target solver zypp_detail
+       source target solver zypp_detail ui
 
 ## ##################################################
 
@@ -151,6 +151,7 @@ lib@PACKAGE@_la_LIBADD =        base/lib@PACKAGE@_base.la   \
                                target/lib@PACKAGE@_target.la   \
                                solver/lib@PACKAGE@_solver.la   \
                                zypp_detail/lib@PACKAGE@_zypp_detail.la \
+                               ui/lib@PACKAGE@_ui.la   \
                                \
                                -lutil
 
diff --git a/zypp/ui/.cvsignore b/zypp/ui/.cvsignore
new file mode 100644 (file)
index 0000000..5c94a2f
--- /dev/null
@@ -0,0 +1,8 @@
+Makefile.in
+Makefile
+.deps
+.libs
+*.o
+*.lo
+*.a
+*.la
diff --git a/zypp/ui/Makefile.am b/zypp/ui/Makefile.am
new file mode 100644 (file)
index 0000000..8b03272
--- /dev/null
@@ -0,0 +1,18 @@
+## Process this file with automake to produce Makefile.in
+## ##################################################
+
+SUBDIRS =
+
+## ##################################################
+
+uiincludedir = $(pkgincludedir)/ui
+
+uiinclude_HEADERS =
+
+noinst_LTLIBRARIES =   lib@PACKAGE@_ui.la
+
+## ##################################################
+
+lib@PACKAGE@_ui_la_SOURCES =
+
+## ##################################################