From: Alexander Borovsky <partizan@tut.by>
To: community@altlinux.ru
Subject: Re: [Comm] makefile generation
Date: Sun, 10 Aug 2003 23:28:50 +0300
Message-ID: <20030810232850.29b53568.partizan@tut.by> (raw)
In-Reply-To: <200308091255.41199.iscander@mercuri.mk.ua>
[-- Attachment #1: Type: text/plain, Size: 1662 bytes --]
Когда-то (а точнее Sat, 9 Aug 2003 12:55:40 +0300)
"Alexandr R. Ogurtzoff" <iscander@mercuri.mk.ua> быть может писал:
> Подскажите, а чем для набора исходников *.c, *.h можно сгенерировать
> Makefile?
> Нашёл что то типа Imake, но как им воспользоваться ума не приложу...
> Или где об этом можно прочитать по русски? Программка не большая но
> вытягивае для себя кучу библиотечек из xlib.
> Вот так постепенно вливаюсь в программирование для Linux, остается
> определиться в направлении движения, помогите пожалуйста
Подключаем руки.so и творим:
1) если не надо особых настроек. Все флаги для сборщика и компилятора
будут браться по умолчанию.
пишем в Makefile:
<---cut here---->
program:cpp-file1.cc c-file1.c
<---cut here---->
make сам вызовет все что надо
2) пишем в Makefile:
<---cut here---->
CC=gcc #компилятор С и C++
LDLIBS= #Опции для сборщика программы
CFLAGS= -Wall -g #опции для копилятора С
CPPFLAGS= -Wall -g #опции для копилятора С++
program:c-file1.o cpp-file1.o
--> $(CC) $(LDLIBS) c-file1.o cpp-file1.o -o program #компиляция
#программы
c-file1.o: c-file1.c
--> $(CC) $(CFLAGS) -c c-file1.c #компиляция исходных текстов
cpp-file1.o: cpp-file1.cc
--> $(CC) $(CPPFLAGS) -c cpp-file1.cc
clean:
--> rm -f program отчистка от временных и результатирующих файлов
--> rpm -f *.o
<---cut here---->
где ``-->'' -- табуляция
3) Долго и упорно курим документацию по automake и autoconf
--------
Best regards,
Alexander Borovsky AKA Partizan <partizan@tut.by>
-----------
Fortune finishes the great quotations, #2
If at first you don't succeed, think how many people
you've made happy.
[-- Attachment #2: Type: application/pgp-signature, Size: 481 bytes --]
next prev parent reply other threads:[~2003-08-10 20:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-08-09 9:55 Alexandr R. Ogurtzoff
2003-08-10 20:28 ` Alexander Borovsky [this message]
2003-08-11 7:57 ` Alexandr R. Ogurtzoff
2003-08-11 21:55 ` Сергей Чебанов
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030810232850.29b53568.partizan@tut.by \
--to=partizan@tut.by \
--cc=community@altlinux.ru \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/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 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git