fix RepoManager_test
[platform/upstream/libzypp.git] / Makefile.cvs
index 39f9d34..3dfffe4 100644 (file)
@@ -1,31 +1,30 @@
-## ##################################################
-## Makefile.cvs
-## ##################################################
-
-.PHONY: default init configure reconf
-
-# Try to detect if this is a lib or lib64 system
-LIB = $(shell gcc -v 2>&1                              \
-       | awk ' BEGIN{ lib="lib" }                      \
-               match( $$0, "--libdir=/usr/([^ ]*)" ) { \
-                       lib=substr($$0,RSTART,RLENGTH); \
-                       sub("--libdir=/usr/","",lib)    \
-               }                                       \
-               END{print lib} ' )
-
-PREFIX = /usr
-CONFIGURE_OPTS=
-default: configure
-
-configure: init
-       ./configure --prefix=$(PREFIX) --libdir=$(PREFIX)/$(LIB) \
-               --disable-static \
-               $(CONFIGURE_OPTS)
-
-init:
-       rm -rf autom4te.cache
-       autoreconf --force --install --symlink --verbose
-
-reconf: init
-       ./config.status --recheck
-       ./config.status
+# Generic Makefile.cvs for CMake-based projects:
+#
+# Create a subdirecory build/ and call cmake from there with /usr prefix.
+#
+# Intentionally using /usr rather than the default /usr/local since this is for
+# internal use, and we are the distribution makers: /usr/local is off limits
+# for us.
+#
+# Author: Stefan Hundhammer <sh@suse.de>
+
+BUILD_SUBDIR           = build
+HERE_FROM_BUILD_SUBDIR = ..
+PREFIX                 = /usr
+CMAKE                  = /usr/bin/cmake
+
+all:   cmake
+
+
+cmake: create-build-subdir create-toplevel-makefile
+       ( cd $(BUILD_SUBDIR) && $(CMAKE) -DCMAKE_INSTALL_PREFIX=$(PREFIX) $(HERE_FROM_BUILD_SUBDIR) )
+
+
+create-build-subdir:
+       test -d $(BUILD_SUBDIR) || mkdir $(BUILD_SUBDIR)
+
+
+create-toplevel-makefile:
+       echo 'all:'                                              >Makefile
+       echo -e '\t$$(MAKE) $$(MAKEFLAGS) -C $(BUILD_SUBDIR)'   >>Makefile
+