VirtualBox

source: kBuild/vendor/gnumake/current/tests/scripts/features/vpath@ 3208

最後變更 在這個檔案從3208是 3138,由 bird 提交於 7 年 前

Imported make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6) from https://git.savannah.gnu.org/git/make.git.

  • 屬性 svn:eol-style 設為 LF
檔案大小: 2.9 KB
 
1# -*-perl-*-
2
3$description = "The following test creates a makefile to test the \n"
4 ."vpath directive which allows you to specify a search \n"
5 ."path for a particular class of filenames, those that\n"
6 ."match a particular pattern.";
7
8$details = "This tests the vpath directive by specifying search directories\n"
9 ."for one class of filenames with the form: vpath pattern directories"
10 ."\nIn this test, we specify the working directory for all files\n"
11 ."that end in c or h. We also test the variables $@ (which gives\n"
12 ."target name) and $^ (which is a list of all dependencies \n"
13 ."including the directories in which they were found). It also\n"
14 ."uses the function firstword used to extract just the first\n"
15 ."dependency from the entire list.";
16
17open(MAKEFILE,"> $makefile");
18
19# The Contents of the MAKEFILE ...
20
21print MAKEFILE "vpath %.c foo\n";
22print MAKEFILE "vpath %.c $workdir\n";
23print MAKEFILE "vpath %.h $workdir\n";
24print MAKEFILE "objects = main.o kbd.o commands.o display.o insert.o\n";
25print MAKEFILE "edit: \$(objects)\n";
26print MAKEFILE "\t\@echo cc -o \$@ \$^\n";
27print MAKEFILE "main.o : main.c defs.h\n";
28print MAKEFILE "\t\@echo cc -c \$(firstword \$^)\n";
29print MAKEFILE "kbd.o : kbd.c defs.h command.h\n";
30print MAKEFILE "\t\@echo cc -c kbd.c\n";
31print MAKEFILE "commands.o : command.c defs.h command.h\n";
32print MAKEFILE "\t\@echo cc -c commands.c\n";
33print MAKEFILE "display.o : display.c defs.h buffer.h\n";
34print MAKEFILE "\t\@echo cc -c display.c\n";
35print MAKEFILE "insert.o : insert.c defs.h buffer.h\n";
36print MAKEFILE "\t\@echo cc -c insert.c\n";
37
38# END of Contents of MAKEFILE
39
40close(MAKEFILE);
41
42
43@files_to_touch = ("$workdir${pathsep}main.c","$workdir${pathsep}defs.h",
44 "$workdir${pathsep}kbd.c","$workdir${pathsep}command.h",
45 "$workdir${pathsep}commands.c","$workdir${pathsep}display.c",
46 "$workdir${pathsep}buffer.h","$workdir${pathsep}insert.c",
47 "$workdir${pathsep}command.c");
48
49&touch(@files_to_touch);
50
51&run_make_with_options($makefile,"",&get_logfile);
52
53# Create the answer to what should be produced by this Makefile
54$answer = "cc -c $workdir${pathsep}main.c\ncc -c kbd.c\ncc -c commands.c\n"
55 ."cc -c display.c\n"
56 ."cc -c insert.c\ncc -o edit main.o kbd.o commands.o display.o "
57 ."insert.o\n";
58
59if (&compare_output($answer,&get_logfile(1)))
60{
61 unlink @files_to_touch;
62}
63
64# TEST 2: after vpath lookup ensure we don't get incorrect circular dependency
65# warnings due to change of struct file ptr. Savannah bug #13529.
66
67mkdir('vpath-d', 0777);
68
69run_make_test(q!
70vpath %.te vpath-d/
71.SECONDARY:
72default: vpath-d/a vpath-d/b
73vpath-d/a: fail.te
74vpath-d/b : fail.te
75vpath-d/fail.te:
76!,
77 '', "#MAKE#: Nothing to be done for 'default'.\n");
78
79rmdir('vpath-d');
80
811;
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette