mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-12 20:35:12 -05:00
13f9fc4d19
* Removed ./gen-mirrorlist.sh invocation from configure script: Mirror-files are generated by make, not configure.
35 lines
540 B
Makefile
35 lines
540 B
Makefile
all: po4a makepkg.8 PKGBUILD.8 pacman.8
|
|
|
|
SUBDIRS = hu
|
|
|
|
po4a:
|
|
if HAS_PO4A
|
|
@$(NORMAL_INSTALL)
|
|
po4a -k 0 --variable srcdir=$(srcdir) $(srcdir)/po4a.cfg
|
|
endif
|
|
|
|
# DIST_SUBDIRS
|
|
if HAS_MAN2HTML
|
|
makepkg.8:
|
|
man2html makepkg.8 > html/makepkg.8.html
|
|
|
|
PKGBUILD.8:
|
|
man2html PKGBUILD.8 > html/PKGBUILD.8.html
|
|
|
|
pacman.8:
|
|
man2html pacman.8 > html/pacman.8.html
|
|
endif
|
|
|
|
clean:
|
|
rm -f html/*.html
|
|
rm -f hu/*.8
|
|
rm -f man3/*.3
|
|
|
|
man_MANS = pacman.8 makepkg.8 PKGBUILD.8 libalpm.3
|
|
|
|
if HAS_DOXYGEN
|
|
man_MANS += *.3
|
|
endif
|
|
|
|
EXTRA_DIST = $(man_MANS) po4a.cfg
|