* [devel] Makefile: using second prerequisite
@ 2008-09-07 13:58 Artem Zolochevskiy
2008-09-07 14:51 ` Vitaly Ostanin
0 siblings, 1 reply; 2+ messages in thread
From: Artem Zolochevskiy @ 2008-09-07 13:58 UTC (permalink / raw)
To: ALT Linux Team development discussions
hi all
Господа, я не силён в make, поэтому прошу помощи.
Как/возможно ли использовать second prerequisite в команде?
target : file1 file2
prog -a file1 -b file2 > target
хочется заменить, используя automatic variables, но это не очень у
меня получается.
target : file1 file2
prog -a $< -b тут_не_знаю > $@
Прошу подсказки.
--
Артём Золочевский
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [devel] Makefile: using second prerequisite
2008-09-07 13:58 [devel] Makefile: using second prerequisite Artem Zolochevskiy
@ 2008-09-07 14:51 ` Vitaly Ostanin
0 siblings, 0 replies; 2+ messages in thread
From: Vitaly Ostanin @ 2008-09-07 14:51 UTC (permalink / raw)
To: ALT Linux Team development discussions
[-- Attachment #1: Type: text/plain, Size: 737 bytes --]
Artem Zolochevskiy пишет:
> hi all
>
> Господа, я не силён в make, поэтому прошу помощи.
>
> Как/возможно ли использовать second prerequisite в команде?
>
> target : file1 file2
> prog -a file1 -b file2 > target
>
> хочется заменить, используя automatic variables, но это не очень у
> меня получается.
>
> target : file1 file2
> prog -a $< -b тут_не_знаю > $@
Если у вас известно, что есть только file1 и file2, то почему не
использовать явные переменные?
file1 = file1
file2 = file2
target : $(file1) $(file2)
prog -a $(file1) -b $(file2) > $@
Если количество файлов неизвестно, нужно разбирать $?, $^ или $|.
--
Regards, Vyt
mailto: vyt@altlinux.org
JID: vitaly.ostanin@gmail.com
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 252 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-09-07 14:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-07 13:58 [devel] Makefile: using second prerequisite Artem Zolochevskiy
2008-09-07 14:51 ` Vitaly Ostanin
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git