Home
last modified time | relevance | path

Searched refs:commands (Results 1 – 25 of 85) sorted by relevance

1234

/ndk/sources/host-tools/make-3.81/
Dcommands.h22 struct commands struct
25 char *commands; /* Commands text. */ member
39 extern void print_commands PARAMS ((struct commands *cmds)); argument
41 extern void chop_commands PARAMS ((struct commands *cmds));
Dmakefile.vms91 objs = commands.obj,job.obj,dir.obj,file.obj,misc.obj,hash.obj,\
95 srcs = commands.c job.c dir.c file.c misc.c hash.c \
99 commands.h dep.h filedef.h job.h make.h rule.h variable.h
118 commands.obj: commands.c make.h dep.h commands.h filedef.h variable.h job.h
119 job.obj: job.c vmsjobs.c make.h commands.h job.h filedef.h variable.h
121 file.obj: file.c make.h commands.h dep.h filedef.h variable.h
125 main.obj: main.c make.h commands.h dep.h filedef.h variable.h job.h
126 read.obj: read.c make.h commands.h dep.h filedef.h variable.h
127 remake.obj: remake.c make.h commands.h job.h dep.h filedef.h
128 rule.obj: rule.c make.h commands.h dep.h filedef.h variable.h rule.h
[all …]
Drule.h28 struct commands *cmds; /* Commands to execute. */
36 char *target, *dep, *commands; member
59 struct commands *commands,
DMakefile.ami120 objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \
124 srcs = $(srcdir)commands.c $(srcdir)job.c $(srcdir)dir.c \
133 $(srcdir)commands.h $(srcdir)dep.h $(srcdir)filedep.h \
275 commands.o: commands.c make.h dep.h filedef.h variable.h job.h \
276 commands.h
277 job.o: job.c make.h job.h filedef.h commands.h variable.h
279 file.o: file.c make.h dep.h filedef.h job.h commands.h variable.h
281 main.o: main.c make.h dep.h filedef.h variable.h job.h commands.h \
283 read.o: read.c make.h dep.h filedef.h job.h commands.h variable.h \
285 remake.o: remake.c make.h filedef.h job.h commands.h dep.h
[all …]
DNMakefile79 $(OUTDIR)/commands.obj \
140 # .deps/commands.Po
141 commands.o commands.o: commands.c make.h config.h \
144 job.h commands.h
150 dep.h job.h commands.h
161 job.h commands.h \
168 hash.h job.h commands.h \
175 job.h commands.h debug.h
196 commands.h
203 commands.h variable.h \
[all …]
Ddefault.c558 f->cmds = (struct commands *) xmalloc (sizeof (struct commands)); in install_default_suffix_rules()
560 f->cmds->commands = s[1]; in install_default_suffix_rules()
DSMakefile126 objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \
130 srcs = $(srcdir)commands.c $(srcdir)job.c $(srcdir)dir.c \
139 $(srcdir)commands.h $(srcdir)dep.h $(srcdir)file.h \
231 # .deps/commands.Po
232 commands.o commands.o: commands.c make.h config.h \
235 job.h commands.h
241 dep.h job.h commands.h
252 job.h commands.h \
259 hash.h job.h commands.h \
266 job.h commands.h debug.h
[all …]
Drule.c161 convert_suffix_rule (char *target, char *source, struct commands *cmds) in convert_suffix_rule()
239 convert_suffix_rule (dep_name (d), (char *) 0, (struct commands *) 0); in convert_to_pattern()
394 r->cmds = (struct commands *) xmalloc (sizeof (struct commands)); in install_pattern_rule()
399 r->cmds->commands = xstrdup (p->commands); in install_pattern_rule()
474 struct commands *commands, int override) in create_pattern_rule() argument
479 r->cmds = commands; in create_pattern_rule()
DMakefile.am42 make_SOURCES = ar.c arscan.c commands.c default.c dir.c expand.c file.c \
49 noinst_HEADERS = commands.h dep.h filedef.h job.h make.h rule.h variable.h \
Dcommands.c269 chop_commands (struct commands *cmds) in chop_commands()
288 p = cmds->commands; in chop_commands()
375 for (p = file->cmds->commands; *p != '\0'; ++p) in execute_file_commands()
595 print_commands (struct commands *cmds) in print_commands()
607 s = cmds->commands; in print_commands()
Dread.c135 struct dep *deps, unsigned int cmds_started, char *commands,
459 char *commands; in eval() local
479 cmds_started, commands, commands_idx, two_colon, \ in eval()
504 commands = xmalloc (200); in eval()
554 commands = xrealloc (commands, commands_len); in eval()
556 bcopy (line, &commands[commands_idx], linelen); in eval()
558 commands[commands_idx++] = '\n'; in eval()
1190 commands = (char *) xrealloc (commands, commands_len); in eval()
1192 bcopy (cmdleft, commands, len); in eval()
1194 commands[commands_idx++] = '\n'; in eval()
[all …]
Dmake.lnk1 FROM LIB:cres.o "commands.o"+"job.o"+"dir.o"+"file.o"+"misc.o"+"main.o"+"read.o"+"remake.o"+"rule.o…
/ndk/sources/host-tools/make-3.81/tests/scripts/misc/
Dgeneral112 edit: main.o kbd.o commands.o display.o \\
14 \t\@echo cc -o edit main.o kbd.o commands.o display.o \\
20 commands.o : command.c defs.h command.h
21 \t\@echo cc -c commands.c
33 "$workdir${pathsep}commands.c","$workdir${pathsep}display.c",
42 $answer = "cc -c main.c\ncc -c kbd.c\ncc -c commands.c\ncc -c display.c
43 cc -c insert.c\ncc -o edit main.o kbd.o commands.o display.o insert.o\n";
Dgeneral214 objects = main.o kbd.o commands.o display.o insert.o
21 commands.o : command.c defs.h command.h
22 \t\@echo cc -c commands.c
34 "$workdir${pathsep}commands.c","$workdir${pathsep}display.c",
43 $answer = "cc -c main.c\ncc -c kbd.c\ncc -c commands.c\ncc -c display.c
44 cc -c insert.c\ncc -o edit main.o kbd.o commands.o display.o insert.o\n";
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dvpath22 print MAKEFILE "objects = main.o kbd.o commands.o display.o insert.o\n";
29 print MAKEFILE "commands.o : command.c defs.h command.h\n";
30 print MAKEFILE "\t\@echo cc -c commands.c\n";
43 "$workdir${pathsep}commands.c","$workdir${pathsep}display.c",
52 $answer = "cc -c $workdir${pathsep}main.c\ncc -c kbd.c\ncc -c commands.c\n"
54 ."cc -c insert.c\ncc -o edit main.o kbd.o commands.o display.o "
Dechoing5 ."commands and no execution happens. In this case, even \n"
6 ."the commands with '\@' are printed. Lastly, it tests the \n"
8 ."all commands started with a '\@'.";
Derrors4 ."commands to test that make ignores errors in these commands\n"
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-k20 edit: main.o kbd.o commands.o display.o
21 \t\@echo cc -o edit main.o kbd.o commands.o display.o
29 commands.o : command.c defs.h command.h
30 \t\@echo cc -c commands.c
43 "$workdir${pathsep}commands.c","$workdir${pathsep}display.c",
61 cc -c commands.c
/ndk/sources/host-tools/make-3.81/doc/
Dmake-stds.texi44 * Install Command Categories:: Three categories of commands in the `install'
145 Write the Makefile commands (and any shell scripts, such as
210 Makefiles should provide variables for overriding certain commands, options,
237 compilation commands or by defining an implicit rule, like this:
266 commands for actual installation, for executables and nonexecutables
288 the installation commands. Use a separate command for each file to be
481 The Makefile commands should check whether the value of
658 The commands should create all the directories in which files are to be
698 commands into three categories: normal ones, @dfn{pre-installation}
699 commands and @dfn{post-installation} commands. @xref{Install Command
[all …]
Dmake.info-28 and issues the commands to recompile them.
61 commands of implicit rules.
110 and commands. If a pattern rule has multiple targets, `make' knows that
111 the rule's commands are responsible for making all of the targets. The
112 commands are executed only once to make all the targets. When searching
115 incidental: `make' worries only about giving commands and prerequisites
116 to the file presently in question. However, when this file's commands
206 target caused the rule's commands to be run.
216 commands from an implicit rule, this will be the first
237 primarily useful for use in linking commands where it is
[all …]
Dmake.texi23 and issues the commands to recompile them.
157 * Force Targets:: You can use a target without commands
187 * Commands/Search:: How to write shell commands that work together
200 * Echoing:: How to control when commands are echoed.
201 * Execution:: How commands are executed.
202 * Parallel:: How commands can be executed in parallel.
206 * Sequences:: Defining canned sequences of commands.
207 * Empty Commands:: Defining useful, do-nothing commands.
212 * Variables in Commands:: Using @code{make} variables in commands.
217 to run commands.
[all …]
Dmake.info-18 and issues the commands to recompile them.
42 and issues the commands to recompile them.
131 * Force Targets:: You can use a target without commands
161 * Commands/Search:: How to write shell commands that work together
174 * Echoing:: How to control when commands are echoed.
175 * Execution:: How commands are executed.
176 * Parallel:: How commands can be executed in parallel.
180 * Sequences:: Defining canned sequences of commands.
181 * Empty Commands:: Defining useful, do-nothing commands.
186 * Variables in Commands:: Using `make' variables in commands.
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/
DSILENT5 ."commands before executing them.";
/ndk/sources/host-tools/make-3.81/po/
Dmake.pot82 #: commands.c:422
86 #: commands.c:545
91 #: commands.c:548
96 #: commands.c:561
101 #: commands.c:563
106 #: commands.c:599
107 msgid "# commands to execute"
110 #: commands.c:602
114 #: commands.c:604
313 msgid "# Dependencies commands running (THIS IS A BUG)."
[all …]
Dinsert-header.sin4 # commands. At the first occurrence, insert the file. At the following

1234