Home
last modified time | relevance | path

Searched refs:MAKEFILE (Results 1 – 25 of 86) sorted by relevance

1234

/ndk/sources/host-tools/make-3.81/tests/scripts/variables/
DMAKEFILES8 open(MAKEFILE,"> $makefile");
9 print MAKEFILE 'all: ; @echo DEFAULT RULE: M2=$(M2) M3=$(M3)', "\n";
10 close(MAKEFILE);
13 open(MAKEFILE,"> $makefile2");
14 print MAKEFILE <<EOF;
16 NDEF: ; \@echo RULE FROM MAKEFILE 2
18 close(MAKEFILE);
21 open(MAKEFILE,"> $makefile3");
22 print MAKEFILE <<EOF;
24 NDEF3: ; \@echo RULE FROM MAKEFILE 3
[all …]
DMAKE8 open(MAKEFILE,"> $makefile");
10 # The Contents of the MAKEFILE ...
12 print MAKEFILE "TMP := \$(MAKE)\n";
13 print MAKEFILE "MAKE := \$(subst X=\$(X),,\$(MAKE))\n\n";
14 print MAKEFILE "all:\n";
15 print MAKEFILE "\t\@echo \$(TMP)\n";
16 print MAKEFILE "\t\$(MAKE) -f $makefile foo\n\n";
17 print MAKEFILE "foo:\n";
18 print MAKEFILE "\t\@echo \$(MAKE)\n";
20 # END of Contents of MAKEFILE
[all …]
DMFILE_LIST7 open(MAKEFILE,"> $makefile");
8 print MAKEFILE <<EOF;
18 close(MAKEFILE);
21 open(MAKEFILE,"> $makefile2");
22 print MAKEFILE "m2 := \$(MAKEFILE_LIST)\n";
23 close(MAKEFILE);
DMAKELEVEL7 open(MAKEFILE,"> $makefile");
9 # The Contents of the MAKEFILE ...
11 print MAKEFILE <<EOF;
17 # END of Contents of MAKEFILE
19 close(MAKEFILE);
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dvpath212 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE "VPATH = $workdir:$sourcedir\n";
17 print MAKEFILE "vpath %.c foo\n";
18 print MAKEFILE "vpath %.c $workdir\n";
19 print MAKEFILE "vpath %.c $sourcedir\n";
20 print MAKEFILE "vpath %.h $workdir\n";
21 print MAKEFILE "vpath %.c\n";
22 print MAKEFILE "vpath\n";
23 print MAKEFILE "all:\n";
[all …]
Dvpath15 open(MAKEFILE,"> $makefile");
17 # The Contents of the MAKEFILE ...
19 print MAKEFILE "vpath %.c foo\n";
20 print MAKEFILE "vpath %.c $workdir\n";
21 print MAKEFILE "vpath %.h $workdir\n";
22 print MAKEFILE "objects = main.o kbd.o commands.o display.o insert.o\n";
23 print MAKEFILE "edit: \$(objects)\n";
24 print MAKEFILE "\t\@echo cc -o \$@ \$^\n";
25 print MAKEFILE "main.o : main.c defs.h\n";
26 print MAKEFILE "\t\@echo cc -c \$(firstword \$^)\n";
[all …]
Ddefault_names9 open(MAKEFILE,"> $makefile");
10 print MAKEFILE "FIRST: ; \@echo It chose GNUmakefile\n";
11 close(MAKEFILE);
18 open(MAKEFILE,"> makefile");
19 print MAKEFILE "SECOND: ; \@echo It chose makefile\n";
20 close(MAKEFILE);
24 open(MAKEFILE,"> Makefile");
25 print MAKEFILE "THIRD: ; \@echo It chose Makefile\n";
26 close(MAKEFILE);
Drecursion9 $(MAKE) -f #MAKEFILE# foo
13 $(MAKE) -f #MAKEFILE# last
22 make 'CFLAGS=-O' -f #MAKEFILE# foo
25 make 'CFLAGS=-O' -f #MAKEFILE# last
31 #MAKEPATH# -f #MAKEFILE# foo
35 #MAKEPATH# -f #MAKEFILE# last
47 recur: all ; @$(MAKE) --no-print-directory -f #MAKEFILE# a=AA all
Dvarnesting5 open(MAKEFILE,"> $makefile");
7 # The Contents of the MAKEFILE ...
9 print MAKEFILE "x = variable1\n"
17 # END of Contents of MAKEFILE
19 close(MAKEFILE);
Dquoting6 open(MAKEFILE,"> $makefile");
8 # The Contents of the MAKEFILE ...
10 print MAKEFILE <<'EOM';
17 # END of Contents of MAKEFILE
19 close(MAKEFILE);
Doverride5 open(MAKEFILE,"> $makefile");
7 # The Contents of the MAKEFILE ...
9 print MAKEFILE "override define foo\n"
16 # END of Contents of MAKEFILE
18 close(MAKEFILE);
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/
DFORCE7 open(MAKEFILE,"> $makefile");
9 # The Contents of the MAKEFILE ...
11 print MAKEFILE ".IGNORE :\n";
12 print MAKEFILE "clean: FORCE\n";
13 print MAKEFILE "\t$delete_command clean\n";
14 print MAKEFILE "FORCE:\n";
16 # END of Contents of MAKEFILE
18 close(MAKEFILE);
DDEFAULT14 open(MAKEFILE,"> $makefile");
16 # The Contents of the MAKEFILE ...
18 print MAKEFILE "foo:\n";
19 print MAKEFILE "\t\@echo Executing rule FOO\n\n";
20 print MAKEFILE ".DEFAULT:\n";
21 print MAKEFILE "\t\@\$(MAKE) -f $makefile2 \$\@ \n";
23 # END of Contents of MAKEFILE
25 close(MAKEFILE);
28 open(MAKEFILE,"> $makefile2");
30 print MAKEFILE "bar:\n";
[all …]
DSILENT12 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE ".SILENT : clean\n";
17 print MAKEFILE "clean: \n";
18 print MAKEFILE "\t$delete_command EXAMPLE_FILE\n";
20 # END of Contents of MAKEFILE
22 close(MAKEFILE);
Dclean10 open(MAKEFILE,"> $makefile");
12 # The Contents of the MAKEFILE ...
14 print MAKEFILE "all: \n";
15 print MAKEFILE "\t\@echo This makefile did not clean the dir... good\n";
16 print MAKEFILE "clean: \n";
17 print MAKEFILE "\t$delete_command EXAMPLE_FILE\n";
19 # END of Contents of MAKEFILE
21 close(MAKEFILE);
DPHONY15 open(MAKEFILE,"> $makefile");
17 # The Contents of the MAKEFILE ...
19 print MAKEFILE ".PHONY : clean \n";
20 print MAKEFILE "all: \n";
21 print MAKEFILE "\t\@echo This makefile did not clean the dir ... good\n";
22 print MAKEFILE "clean: \n";
23 print MAKEFILE "\t$delete_command $example clean\n";
25 # END of Contents of MAKEFILE
27 close(MAKEFILE);
DSECONDARY16 open(MAKEFILE,"> $makefile");
18 print MAKEFILE <<'EOF';
32 close(MAKEFILE);
88 open(MAKEFILE, "> $makefile2");
90 print MAKEFILE <<'EOF';
100 close(MAKEFILE);
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-f14 open(MAKEFILE,"> $makefile");
16 # The Contents of the MAKEFILE ...
18 print MAKEFILE "all: \n";
19 print MAKEFILE "\t\@echo This is the output from the original makefile\n";
21 # END of Contents of MAKEFILE
23 close(MAKEFILE);
26 open(MAKEFILE,"> $makefile2");
27 print MAKEFILE "TWO: \n";
28 print MAKEFILE "\t\@echo This is the output from makefile 2\n";
29 close(MAKEFILE);
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Deval9 open(MAKEFILE,"> $makefile");
11 print MAKEFILE <<'EOF';
25 close(MAKEFILE);
39 open(MAKEFILE,"> $makefile2");
41 print MAKEFILE <<'EOF';
51 close(MAKEFILE);
64 open(MAKEFILE,"> $makefile3");
66 print MAKEFILE <<'EOF';
81 close(MAKEFILE);
96 open(MAKEFILE,"> $makefile3");
[all …]
Ddir6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET
7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF
12 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE "string := \$(dir src${pathsep}foo.c hacks) \n"
20 # END of Contents of MAKEFILE
22 close(MAKEFILE);
Dfindstring6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET
7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF
12 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE "string := \$(findstring port, reporter)\n"
20 # END of Contents of MAKEFILE
22 close(MAKEFILE);
Dword9 open(MAKEFILE,"> $makefile");
10 print MAKEFILE <<'EOF';
29 close(MAKEFILE);
59 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: ''. Stop.",
64 "#MAKEFILE#:4: *** non-numeric first argument to `word' function: 'abc '. Stop.",
69 "#MAKEFILE#:5: *** non-numeric first argument to `word' function: '1a'. Stop.",
74 "#MAKEFILE#:7: *** non-numeric first argument to `wordlist' function: ''. Stop.",
79 "#MAKEFILE#:8: *** non-numeric first argument to `wordlist' function: 'abc '. Stop.",
84 … "#MAKEFILE#:9: *** non-numeric second argument to `wordlist' function: ' 12a '. Stop.",
97 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: ''. Stop.",
[all …]
Djoin6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET
7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF
12 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE "string := \$(join a b c,foo hacks .pl1) \n"
20 # END of Contents of MAKEFILE
22 close(MAKEFILE);
Daddprefix6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET
7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF
12 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE "string := \$(addprefix src${pathsep},a.b.z.foo hacks) \n"
20 # END of Contents of MAKEFILE
22 close(MAKEFILE);
Dnotdir6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET
7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF
12 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE "string := \$(notdir ${pathsep}src${pathsep}foo.c hacks) \n"
20 # END of Contents of MAKEFILE
22 close(MAKEFILE);

1234