1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
top_srcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
SHELL = /bin/sh
# Installation targets
#
prefix = @prefix@
exec_prefix = @exec_prefix@
datarootdir = @datarootdir@
bindir = @bindir@
libdir = @libdir@
includedir = @includedir@
mandir = @mandir@
docdir = @docdir@
pdfdir = @pdfdir@
mandir = @mandir@
man1dir = ${mandir}/man1
man1ext = .1
INSTALL = @INSTALL@
MANS = infernal\
cmalign\
cmbuild\
cmcalibrate\
cmconvert\
cmemit\
cmfetch\
cmpress\
cmsearch\
cmscan\
cmstat
# don't install these, since the programs aren't installed
# sse_cmsearch\
# cmsearch_dual
.PHONY: install uninstall clean distclean
install:
for file in ${MANS}; do \
${INSTALL} -m 0664 $$file.man ${DESTDIR}${man1dir}/$${file}${man1ext} ;\
done
uninstall:
for file in ${MANS}; do \
rm ${DESTDIR}${man1dir}/$${file}${man1ext} ;\
done
clean:
-rm -f *~
ifndef V
@echo ' ' CLEAN man
endif
distclean:
-rm -f *~
-rm -f *.man
-rm -f Makefile
|