Beau Simensen
Beau Simensen

Reputation: 4578

How is README.in used in autotools?

I'm using acmkdir to initialize a new project and it created a README.in file and a README file.

Is README.in actually used by something to create the README? If not, what is its purpose? I'm hoping to understand all of the files created by acmkdir and these have me stumped.

Upvotes: 2

Views: 332

Answers (1)

Brian Gianforcaro
Brian Gianforcaro

Reputation: 27190

The README.in file is the "souce file" for your README. On make your README.in will be processed for variables like @VERSION@ and the proper values for your build will be inserted.

You can see an example here.

Upvotes: 4

Related Questions