mirror of https://github.com/yasm/yasm.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
13 lines
296 B
# $IdPath$ |
|
# Transforms queue manpage into various output formats. |
|
# The queue manpage is courtesy of FreeBSD. |
|
|
|
noinst_DATA = queue.html queue.ps |
|
|
|
EXTRA_DIST = queue.3 |
|
|
|
queue.html: queue.3 |
|
$(GROFF) -mmandoc -Thtml queue.3 >queue.html |
|
|
|
queue.ps: queue.3 |
|
$(GROFF) -mmandoc -Tps queue.3 >queue.ps
|
|
|