1*b6cee71dSXin LIMAGIC = $(pkgdatadir)/magic 2*b6cee71dSXin LIif FSECT5 3*b6cee71dSXin LIman_MAGIC = magic.5 4*b6cee71dSXin LIelse 5*b6cee71dSXin LIman_MAGIC = magic.4 6*b6cee71dSXin LIendif 7*b6cee71dSXin LIfsect = @fsect@ 8*b6cee71dSXin LIman_MANS = file.1 $(man_MAGIC) libmagic.3 9*b6cee71dSXin LI 10*b6cee71dSXin LIEXTRA_DIST = file.man magic.man libmagic.man 11*b6cee71dSXin LICLEANFILES = $(man_MANS) 12*b6cee71dSXin LI 13*b6cee71dSXin LIfile.1: Makefile file.man 14*b6cee71dSXin LI @rm -f $@ 15*b6cee71dSXin LI sed -e s@__CSECTION__@1@g \ 16*b6cee71dSXin LI -e s@__FSECTION__@${fsect}@g \ 17*b6cee71dSXin LI -e s@__VERSION__@${VERSION}@g \ 18*b6cee71dSXin LI -e s@__MAGIC__@${MAGIC}@g $(srcdir)/file.man > $@ 19*b6cee71dSXin LI 20*b6cee71dSXin LImagic.${fsect}: Makefile magic.man 21*b6cee71dSXin LI @rm -f $@ 22*b6cee71dSXin LI sed -e s@__CSECTION__@1@g \ 23*b6cee71dSXin LI -e s@__FSECTION__@${fsect}@g \ 24*b6cee71dSXin LI -e s@__VERSION__@${VERSION}@g \ 25*b6cee71dSXin LI -e s@__MAGIC__@${MAGIC}@g $(srcdir)/magic.man > $@ 26*b6cee71dSXin LI 27*b6cee71dSXin LIlibmagic.3: Makefile libmagic.man 28*b6cee71dSXin LI @rm -f $@ 29*b6cee71dSXin LI sed -e s@__CSECTION__@1@g \ 30*b6cee71dSXin LI -e s@__FSECTION__@${fsect}@g \ 31*b6cee71dSXin LI -e s@__VERSION__@${VERSION}@g \ 32*b6cee71dSXin LI -e s@__MAGIC__@${MAGIC}@g $(srcdir)/libmagic.man > $@ 33