sane-project-backends/tools/Makefile.in

101 wiersze
2.4 KiB
Makefile
Czysty Zwykły widok Historia

1999-08-09 18:06:01 +00:00
SHELL = /bin/sh
VPATH = @srcdir@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = ..
subdir = tools
1999-08-09 18:06:01 +00:00
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
configdir = ${sysconfdir}/sane.d
MKDIR = $(top_srcdir)/mkinstalldirs
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
1999-08-09 18:06:01 +00:00
INSTALL_DATA = @INSTALL_DATA@
RANLIB = @RANLIB@
CC = @CC@
INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include
CPPFLAGS = @CPPFLAGS@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
DEFS = @DEFS@
LIBTOOL = ../libtool
MCOMP = --mode=compile
MLINK = --mode=link
MINST = --mode=install
COMPILE = $(CC) -c $(CFLAGS) $(DEFS) $(INCLUDES) $(CPPFLAGS)
LINK = $(CC) $(LDFLAGS) -o $@
@SET_MAKE@
DESTINATIONS = sane-find-scanner sane-config umax_pp
1999-08-09 18:06:01 +00:00
EXTRA = sane_strstatus.lo ../sanei/sanei_init_debug.lo \
../sanei/sanei_config.lo ../sanei/sanei_config2.lo \
../lib/usleep.lo ../lib/strndup.lo
LIBSANEI = ../sanei/libsanei.a
# Library routines that should be part of libc, but aren't on some systems:
LIBLIB = ../lib/liblib.a
.c.o:
$(COMPILE) $<
%.lo: %.c
@$(LIBTOOL) $(MCOMP) $(COMPILE) -DLIBDIR=$(libdir) $<
all: $(DESTINATIONS)
install: sane-config sane-find-scanner
$(INSTALL_SCRIPT) sane-config $(bindir)/sane-config
$(INSTALL_PROGRAM) sane-find-scanner $(bindir)/sane-find-scanner
uninstall:
rm -f $(bindir)/sane-config $(bindir)/sane-find-scanner
sane-config: sane-config.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
sane-find-scanner: sane-find-scanner.o \
1999-08-09 18:06:01 +00:00
../sanei/sanei_scsi.lo ../sanei/sanei_init_debug.lo
@$(LIBTOOL) $(MLINK) $(LINK) sane-find-scanner.o $(LIBSANEI) $(LIBLIB) \
1999-08-09 18:06:01 +00:00
$(LIBS)
umax_pp: umax_pp.o ../backend/umax_pp_low.o
@$(LIBTOOL) $(MLINK) $(LINK) umax_pp.o ../backend/umax_pp_low.o \
$(LIBSANEI) $(LIBLIB) $(LIBS)
1999-08-09 18:06:01 +00:00
depend:
makedepend $(INCLUDES) *.c
clean:
rm -f *.lo *.o *~ *.la *.bak
find . -type l -name \*-s.c | xargs rm -f
rm -rf .libs
distclean: clean
rm -f Makefile $(DESTINATIONS) mustek600IIn-off
1999-08-09 18:06:01 +00:00
.PHONY: all install depend clean distclean uninstall