diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 309b77a..c7a76df 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,6 +20,8 @@ mandir = @mandir@ includedir = @includedir@ oldincludedir = /usr/include +sanedatadir = @datadir@/sane + MKDIR = $(top_srcdir)/mkinstalldirs INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -27,13 +29,14 @@ INSTALL_DATA = @INSTALL_DATA@ @SET_MAKE@ -SUBDIRS = lib @INTLSUB@ frontend @POSUB@ doc +SUBDIRS = lib @INTLSUB@ src @POSUB@ doc all: all-recursive - install: install-recursive +uninstall: uninstall-recursive + clean: clean-recursive distclean: clean distclean-recursive @@ -43,7 +46,7 @@ distclean: clean distclean-recursive depend: depend-recursive -all-recursive install-recursive clean-recursive distclean-recursive \ +all-recursive install-recursive uninstall-recursive clean-recursive distclean-recursive \ depend-recursive: for subdir in $(SUBDIRS); do \ target=`echo $@ | sed s/-recursive//`; \ |