[PC-BSD Commits] r15816 - in pcbsd/current/src-sh: . pc-netupdate
svn at pcbsd.org
svn at pcbsd.org
Wed Mar 14 14:02:16 PDT 2012
Author: kris
Date: 2012-03-14 21:02:16 +0000 (Wed, 14 Mar 2012)
New Revision: 15816
Added:
pcbsd/current/src-sh/pc-netupdate/
pcbsd/current/src-sh/pc-netupdate/Makefile
pcbsd/current/src-sh/pc-netupdate/pc-netupdate
Modified:
pcbsd/current/src-sh/Makefile
Log:
Add pc-netupdate utility, which will be used for other scripts / utilties
when they need to schedule the download of some file(s) periodicly, which
may be signed or unsigned. This prevents us from having to write a daemon
into each program.
Modified: pcbsd/current/src-sh/Makefile
===================================================================
--- pcbsd/current/src-sh/Makefile 2012-03-14 17:06:37 UTC (rev 15815)
+++ pcbsd/current/src-sh/Makefile 2012-03-14 21:02:16 UTC (rev 15816)
@@ -25,6 +25,7 @@
sub-pcup \
sub-pcfbsd \
sub-pcfirst \
+ sub-pcnetup \
sub-pbi \
sub-deinfo \
sub-meta \
@@ -108,6 +109,19 @@
sub-pcfirst-install_subtargets: pc-firstgui/$(MAKEFILE) FORCE
cd pc-firstgui/ && $(MAKE) -f $(MAKEFILE) install
+sub-pcnetup: pc-netupdate/$(MAKEFILE) FORCE
+ cd pc-netupdate/ && $(MAKE) -f $(MAKEFILE)
+sub-pcnetup-make_default: pc-netupdate/$(MAKEFILE) FORCE
+ cd pc-netupdate/ && $(MAKE) -f $(MAKEFILE)
+sub-pcnetup-make_first: pc-netupdate/$(MAKEFILE) FORCE
+ cd pc-netupdate/ && $(MAKE) -f $(MAKEFILE) first
+sub-pcnetup-all: pc-netupdate/$(MAKEFILE) FORCE
+ cd pc-netupdate/ && $(MAKE) -f $(MAKEFILE) all
+sub-pcnetup-clean: pc-netupdate/$(MAKEFILE) FORCE
+ cd pc-netupdate/ && $(MAKE) -f $(MAKEFILE) clean
+sub-pcnetup-install_subtargets: pc-netupdate/$(MAKEFILE) FORCE
+ cd pc-netupdate/ && $(MAKE) -f $(MAKEFILE) install
+
sub-pcrunx: pc-runxgui/$(MAKEFILE) FORCE
cd pc-runxgui/ && $(MAKE) -f $(MAKEFILE)
sub-pcrunx-make_default: pc-runxgui/$(MAKEFILE) FORCE
@@ -166,6 +180,7 @@
sub-pcup-make_default \
sub-pcfbsd-make_default \
sub-pcfirst-make_default \
+ sub-pcnetup-make_default \
sub-pcsu-make_default \
sub-deinfo-make_default \
sub-pcthinclient-make_default \
@@ -178,6 +193,7 @@
sub-pcup-make_first \
sub-pcfbsd-make_first \
sub-pcfirst-make_first \
+ sub-pcnetup-make_first \
sub-pcsu-make_first \
sub-deinfo-make_first \
sub-pcthinclient-make_first \
@@ -190,6 +206,7 @@
sub-pcup-all \
sub-pcfbsd-all \
sub-pcfirst-all \
+ sub-pcnetup-all \
sub-pcsu-all \
sub-deinfo-all \
sub-pcthinclient-all \
@@ -202,6 +219,7 @@
sub-pcup-clean \
sub-pcfbsd-clean \
sub-pcfirst-clean \
+ sub-pcnetup-clean \
sub-pcsu-clean \
sub-deinfo-clean \
sub-pcthinclient-clean \
@@ -214,6 +232,7 @@
sub-pcup-install_subtargets \
sub-pcfbsd-install_subtargets \
sub-pcfirst-install_subtargets \
+ sub-pcnetup-install_subtargets \
sub-pcsu-install_subtargets \
sub-deinfo-install_subtargets \
sub-pcthinclient-install_subtargets \
More information about the Commits
mailing list