2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Automakeは、ディレクトリの深いところにソースがあっても動作する。

Last updated at Posted at 2020-01-05

Automakeは、ディレクトリの深いところにソースがあっても動作する。
例えば
Project ディレクトリの下に、

Project/src/main/c/hello.c 
Project/src/main/c/Makefile.am 

があるとき、

Project/Makefile.am 

Project/Makefile.am
SUBDIRS = src/main/c 

とさえ記述しておけばよい。
あとはAutotoolsのお作法通りの操作でmake installまでできる。

src/Makefile.am 
src/main/Makefile.am 

は冗長なので作る必要がない。
これでMavenデフォルトライクなディレクトリ構成でAutomakeが使える。やったね!

参考: https://www.gnu.org/software/automake/manual/automake.html

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?