|
Revision 5188, 454 bytes
(checked in by khali, 5 years ago)
|
|
Fix stray references to cvs.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # quick makefile for the FAQ. |
|---|
| 3 | # So that both the text and html FAQ are accessible on the web |
|---|
| 4 | # they are checked into SVN along with the .texi source. |
|---|
| 5 | # Don't forget to update version.texi. |
|---|
| 6 | # Run 'make' and then check in all 4 files after editing the .texi source. |
|---|
| 7 | # |
|---|
| 8 | all:: lm_sensors-FAQ.html FAQ |
|---|
| 9 | |
|---|
| 10 | %.html: %.texi version.texi |
|---|
| 11 | makeinfo --html --no-split --number-sections $< |
|---|
| 12 | |
|---|
| 13 | FAQ: lm_sensors-FAQ.texi |
|---|
| 14 | makeinfo --no-headers --number-sections -o FAQ $< |
|---|