1 # 2 # Makefile.in for etc 3 # 4 5 DESTDIR = 6 7 prefix = @prefix@ 8 exec_prefix = @exec_prefix@ 9 10 srcdir = @srcdir@ 11 VPATH = @srcdir@ 12 13 bindir = @bindir@ 14 libdir = @libdir@ 15 tooldir = $(libdir) 16 datadir = @datadir@ 17 18 mandir = @mandir@ 19 man1dir = $(mandir)/man1 20 man2dir = $(mandir)/man2 21 man3dir = $(mandir)/man3 22 man4dir = $(mandir)/man4 23 man5dir = $(mandir)/man5 24 man6dir = $(mandir)/man6 25 man7dir = $(mandir)/man7 26 man8dir = $(mandir)/man8 27 man9dir = $(mandir)/man9 28 datarootdir = @datarootdir@ 29 docdir = @docdir@ 30 infodir = @infodir@ 31 pdfdir = @docdir@ 32 htmldir = @htmldir@ 33 34 SHELL = /bin/sh 35 36 INSTALL = @INSTALL@ 37 INSTALL_PROGRAM = @INSTALL_PROGRAM@ 38 INSTALL_DATA = @INSTALL_DATA@ 39 40 #### Host, target, and site specific Makefile fragments come in here. 41 ### 42 43 all: 44 45 clean: 46 47 mostlyclean: clean 48 49 distclean: clean 50 rm -f Makefile config.status config.cache 51 52 maintainer-clean realclean: distclean 53 54 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) \ 55 config.status 56 $(SHELL) ./config.status 57 58 AUTOCONF = autoconf 59 configure_deps = $(srcdir)/configure.in 60 61 $(srcdir)/configure: @MAINT@ $(configure_deps) 62 cd $(srcdir) && $(AUTOCONF) 63 64 config.status: $(srcdir)/configure 65 $(SHELL) ./config.status --recheck 66 67 ## these last targets are for standards.texi conformance 68 dist: 69 check: 70 info html dvi ps pdf: 71 install install-strip install-info install-html install-pdf: 72 installcheck: 73 uninstall: 74 TAGS: 75