summaryrefslogtreecommitdiffstats
path: root/make/make-3.81/tests/scripts/variables/MAKEFILES
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 04:13:19 +0100
committerLukc <lukc@upyum.com>2010-12-12 04:13:19 +0100
commit9769d39d792c1e912234e23e663ba8bd21a6386e (patch)
tree76bf5a6a6c756cf78c73a847b2ff3ec97f048ee7 /make/make-3.81/tests/scripts/variables/MAKEFILES
parentabb6804a2c95065cbc228c3726781d44ed04e6cd (diff)
downloadbase-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/variables/MAKEFILES')
-rw-r--r--make/make-3.81/tests/scripts/variables/MAKEFILES34
1 files changed, 0 insertions, 34 deletions
diff --git a/make/make-3.81/tests/scripts/variables/MAKEFILES b/make/make-3.81/tests/scripts/variables/MAKEFILES
deleted file mode 100644
index 3be284b..0000000
--- a/make/make-3.81/tests/scripts/variables/MAKEFILES
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*-perl-*-
-
-$description = "Test the MAKEFILES variable.";
-
-$makefile2 = &get_tmpfile;
-$makefile3 = &get_tmpfile;
-
-open(MAKEFILE,"> $makefile");
-print MAKEFILE 'all: ; @echo DEFAULT RULE: M2=$(M2) M3=$(M3)', "\n";
-close(MAKEFILE);
-
-
-open(MAKEFILE,"> $makefile2");
-print MAKEFILE <<EOF;
-M2 = m2
-NDEF: ; \@echo RULE FROM MAKEFILE 2
-EOF
-close(MAKEFILE);
-
-
-open(MAKEFILE,"> $makefile3");
-print MAKEFILE <<EOF;
-M3 = m3
-NDEF3: ; \@echo RULE FROM MAKEFILE 3
-EOF
-close(MAKEFILE);
-
-
-&run_make_with_options($makefile, "MAKEFILES='$makefile2 $makefile3'",
- &get_logfile);
-$answer = "DEFAULT RULE: M2=m2 M3=m3\n";
-&compare_output($answer,&get_logfile(1));
-
-1;