kopia lustrzana https://gitlab.com/sane-project/backends
84 wiersze
1.7 KiB
Makefile
84 wiersze
1.7 KiB
Makefile
SHELL = /bin/sh
|
|
|
|
VPATH = @srcdir@
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = ..
|
|
|
|
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
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
RANLIB = @RANLIB@
|
|
|
|
CC = @CC@
|
|
INCLUDES = -I. -I$(srcdir) \
|
|
-I$(top_builddir)/include/sane -I$(top_srcdir)/include
|
|
CPPFLAGS = @CPPFLAGS@
|
|
CFLAGS = @CFLAGS@
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = @LIBS@
|
|
DEFS = @DEFS@
|
|
|
|
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
|
LIBTOOL = ../libtool
|
|
MCOMP = --mode=compile
|
|
MLINK = --mode=link
|
|
|
|
@SET_MAKE@
|
|
|
|
LIBLIB_OBJS = alloca.o getopt.o getopt1.o sigprocmask.o strndup.o \
|
|
strdup.o strsep.o snprintf.o usleep.o getenv.o \
|
|
isfdtype.o vsyslog.o md5.o
|
|
LIBLIB_LTOBJS = alloca.lo getopt.lo getopt1.lo sigprocmask.lo strndup.lo \
|
|
strdup.lo strsep.lo snprintf.lo usleep.lo getenv.lo \
|
|
isfdtype.lo vsyslog.lo md5.lo
|
|
|
|
TARGETS = $(LIBLIB_OBJS)
|
|
TARGETS = liblib.a
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .c .o
|
|
.c.o:
|
|
@$(LIBTOOL) $(MCOMP) $(COMPILE) $<
|
|
@test -f $@ || $(COMPILE) $<
|
|
|
|
all: $(TARGETS)
|
|
|
|
liblib.a: $(LIBLIB_OBJS)
|
|
ar r $@ $(LIBLIB_OBJS)
|
|
$(RANLIB) $@
|
|
|
|
install:
|
|
|
|
uninstall:
|
|
|
|
check:
|
|
|
|
depend:
|
|
makedepend -I. -I../include *.c
|
|
|
|
clean:
|
|
rm -f *.out *.o *.lo *~ *.a *.bak $(TESTPROGRAMS)
|
|
rm -rf .libs
|
|
|
|
distclean: clean
|
|
rm -f Makefile
|
|
|
|
.PHONY: all install check depend clean distclean uninstall
|