diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 04:13:19 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 04:13:19 +0100 |
commit | 9769d39d792c1e912234e23e663ba8bd21a6386e (patch) | |
tree | 76bf5a6a6c756cf78c73a847b2ff3ec97f048ee7 /make/make-3.81/tests/scripts/targets/FORCE | |
parent | abb6804a2c95065cbc228c3726781d44ed04e6cd (diff) | |
download | base-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.gz base-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.bz2 base-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.xz base-9769d39d792c1e912234e23e663ba8bd21a6386e.zip |
Recette de make retir?e.
Diffstat (limited to 'make/make-3.81/tests/scripts/targets/FORCE')
-rw-r--r-- | make/make-3.81/tests/scripts/targets/FORCE | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/make/make-3.81/tests/scripts/targets/FORCE b/make/make-3.81/tests/scripts/targets/FORCE deleted file mode 100644 index eb8f251..0000000 --- a/make/make-3.81/tests/scripts/targets/FORCE +++ /dev/null @@ -1,40 +0,0 @@ -# -*-perl-*- - -$description = "The following tests rules without Commands or Dependencies."; - -$details = "If the rule ...\n"; - -open(MAKEFILE,"> $makefile"); - -# The Contents of the MAKEFILE ... - -print MAKEFILE ".IGNORE :\n"; -print MAKEFILE "clean: FORCE\n"; -print MAKEFILE "\t$delete_command clean\n"; -print MAKEFILE "FORCE:\n"; - -# END of Contents of MAKEFILE - -close(MAKEFILE); - - -# Create a file named "clean". This is the same name as the target clean -# and tricks the target into thinking that it is up to date. (Unless you -# use the .PHONY target. -&touch("clean"); - -$answer = "$delete_command clean\n"; -&run_make_with_options($makefile,"clean",&get_logfile); - -&compare_output($answer,&get_logfile(1)); - -1; - - - - - - - - - |