[Openvas-commits] r5571 - trunk/openvas-client
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Fri Oct 16 08:41:04 CEST 2009
Author: felix
Date: 2009-10-16 08:41:01 +0200 (Fri, 16 Oct 2009)
New Revision: 5571
Modified:
trunk/openvas-client/ChangeLog
trunk/openvas-client/Makefile
Log:
* Makefile: Added target for omp-cli, added to "all" target, install
and clean.
Modified: trunk/openvas-client/ChangeLog
===================================================================
--- trunk/openvas-client/ChangeLog 2009-10-15 20:34:03 UTC (rev 5570)
+++ trunk/openvas-client/ChangeLog 2009-10-16 06:41:01 UTC (rev 5571)
@@ -1,3 +1,8 @@
+2009-10-16 Felix Wolfsteller <felix.wolfsteller at intevation.de>
+
+ * Makefile: Added target for omp-cli, added to "all" target, install
+ and clean.
+
2009-10-15 Jan-Oliver Wagner <jan-oliver.wagner at greenbone.net>
* openvas/monitor_dialog.c: Removed coment about
Modified: trunk/openvas-client/Makefile
===================================================================
--- trunk/openvas-client/Makefile 2009-10-15 20:34:03 UTC (rev 5570)
+++ trunk/openvas-client/Makefile 2009-10-16 06:41:01 UTC (rev 5571)
@@ -1,6 +1,6 @@
include openvas.tmpl
-all: openvas.tmpl client
+all: openvas.tmpl client omp-client
openvas.tmpl: openvas.tmpl.in configure VERSION
$(SHELL) configure $(CONFIGURE_ARGS)
@@ -35,10 +35,13 @@
client-install: client
test -d $(DESTDIR)${bindir} || $(INSTALL_DIR) -m 755 $(DESTDIR)${bindir}
$(INSTALL) -m $(CLIENTMODE) ${make_bindir}/OpenVAS-Client $(DESTDIR)${bindir}
+ $(INSTALL) -m $(CLIENTMODE) src/omp-cli $(DESTDIR)${bindir}
client:
cd openvas && $(MAKE)
+omp-client:
+ cd src && $(MAKE)
man: $(MAN_OPENVAS_1)
@@ -51,7 +54,8 @@
clean:
cd openvas && $(MAKE) clean
cd src/gui && $(MAKE) clean
- cd src/util && $(MAKE) clean
+ cd src/util && $(MAKE) clean
+ cd src && $(MAKE) clean
rm -rf doc/generated
distclean: clean
More information about the Openvas-commits
mailing list