タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

c++とcとautotoolsに関するnabinnoのブックマーク (3)

  • Autotools - Wikipedia

    GNU Autotools、またはGNU Build Systemとは、主にUnix系オペレーティングシステム (OS) においてソフトウェアパッケージ開発を行うための、ツール及びフレームワークの一種である。このツールを使用することにより、多種多様なUNIX互換環境にパッケージを対応させることが容易になる。 Autotoolsは主に Autoconf/Automake/Libtool の3つから成り立っている[1]。他の関連するツールには GNU make、GNU gettext、pkg-config、GNUコンパイラコレクションなどがある。 AutotoolsはGNUツールチェーンの一部であり、多くの自由ソフトウェアやオープンソースパッケージで広く使用されている。そのコンポーネントツールは自由ソフトウェアであり、GNU General Public License の下でライセンスされて

    Autotools - Wikipedia
  • Autotools ( automake, autoconf, libtool ) 使い方まとめ - たまにゃんのメモ帳

    Autotoolsの使い方をまとめてみた Autotoolsとは、主にUNIX系OSにおいてソフトウェアパッケージ開発を行うための、ツール及びフレ ームワークの一種である。このツールを使用することにより、多種多様なUNIX互換環境にパッケージを対応させることが容易になる。 Autotoolsは主に autoconf/automake/libtools の3つから成り立っている。 静的ライブラリをリンクして扱う単純なプログラムのプロジェクトを作る。 libtoolは今回使っていない。 1. 事前準備 いくつか自分でファイルを作成する必要がある。 project ├── Makefile.am └── src ├── Makefile.am ├── main.c └── lib ├── Makefile.am ├── lib_test.h └── lib_test.c ソースコード src/m

    Autotools ( automake, autoconf, libtool ) 使い方まとめ - たまにゃんのメモ帳
  • The magic behind configure, make, and make install

    If you’ve used any flavour of Unix for development, you’ve probably installed software from source with this magic incantation: I know I’ve typed it a lot, but in my early days using Linux, I didn’t really understand what it meant. I just knew that if I wanted to install software this was the spell to recite. Recently, I’ve been building my own Unix tools, and I wanted to tap into this standard in

    The magic behind configure, make, and make install
  • 1