From: gobo72 Date: Fri, 4 Mar 2011 21:37:29 +0000 (+0000) Subject: Enlevé le get automatique dans le target all du Makefile (cause problème au stage2... X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=86c9c999d0936f62ef074e07931bd996b5b5116c;p=hvlinux.git Enlevé le get automatique dans le target all du Makefile (cause problème au stage2 quand le réseau n'est pas disponible) --- diff --git a/stage0/Makefile b/stage0/Makefile index 5fd7c05..b5595fc 100644 --- a/stage0/Makefile +++ b/stage0/Makefile @@ -1,8 +1,5 @@ # Makefile for hvlinux -# Pour émuler option command-line --silent ? -#.SILENT: - # Idées pour future targets: # clean # strip @@ -12,7 +9,7 @@ .PHONY: get test -all: get +all: @./hv-install-1 # Fetch packages from network diff --git a/stage1/Makefile b/stage1/Makefile new file mode 100644 index 0000000..b5595fc --- /dev/null +++ b/stage1/Makefile @@ -0,0 +1,21 @@ +# Makefile for hvlinux + +# Idées pour future targets: +# clean +# strip +# compress -> compressdoc (à partir du stage2) +# dep +# list -> list installed packages and versions + +.PHONY: get test + +all: + @./hv-install-1 + +# Fetch packages from network +get: + @./packages-update + +# Test integrity of packages +test: + @./packages-update test diff --git a/stage2/Makefile b/stage2/Makefile new file mode 100644 index 0000000..b5595fc --- /dev/null +++ b/stage2/Makefile @@ -0,0 +1,21 @@ +# Makefile for hvlinux + +# Idées pour future targets: +# clean +# strip +# compress -> compressdoc (à partir du stage2) +# dep +# list -> list installed packages and versions + +.PHONY: get test + +all: + @./hv-install-1 + +# Fetch packages from network +get: + @./packages-update + +# Test integrity of packages +test: + @./packages-update test diff --git a/stage3/Makefile b/stage3/Makefile new file mode 100644 index 0000000..b5595fc --- /dev/null +++ b/stage3/Makefile @@ -0,0 +1,21 @@ +# Makefile for hvlinux + +# Idées pour future targets: +# clean +# strip +# compress -> compressdoc (à partir du stage2) +# dep +# list -> list installed packages and versions + +.PHONY: get test + +all: + @./hv-install-1 + +# Fetch packages from network +get: + @./packages-update + +# Test integrity of packages +test: + @./packages-update test