mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
10 lines
215 B
Makefile
10 lines
215 B
Makefile
# $IdPath$
|
|
# Transforms queue manpage into various output formats.
|
|
|
|
all: queue.html queue.ps
|
|
|
|
queue.html: queue.3
|
|
groff -mmandoc -Thtml queue.3 >queue.html
|
|
|
|
queue.ps: queue.3
|
|
groff -mmandoc -Tps queue.3 >queue.ps
|