SHELL = /bin/sh srcdir = . top_srcdir = .. top_builddir = .. prefix = exec_prefix = ${prefix} bindir = ${exec_prefix}/bin sbindir = ${exec_prefix}/sbin libexecdir = ${exec_prefix}/libexec datadir = ${prefix}/share sysconfdir = ${prefix}/etc sharedstatedir = ${prefix}/com localstatedir = ${prefix}/var libdir = ${exec_prefix}/lib infodir = ${prefix}/info mandir = ${prefix}/man includedir = ${prefix}/include oldincludedir = /usr/include configdir = ${sysconfdir}/sane.d sanedatadir = ${datadir}/sane INSTALL = /usr/bin/install -c -o root -g wheel INSTALL_PROGRAM = install -s -o root -g wheel -m 555 INSTALL_DATA = install -o root -g wheel -m 444 RANLIB = ranlib CC = cc INCLUDES = -I. -I$(srcdir) \ -I$(top_builddir)/include/sane -I$(top_srcdir)/include CPPFLAGS = -I/usr/local/include -D_GNU_SOURCE -DV_MAJOR=0 -DV_MINOR=991 -DSANE_V_MAJOR=1 CFLAGS = -fno-common -I/usr/local/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include LDFLAGS = -L/usr/local/lib LIBS = -lpng -ltiff -ljpeg -lz -lm -L/usr/local/lib -lintl -L/usr/local/lib -L/usr/X11R6/lib -lgtk-12 -lgdk-12 -lgmodule-12 -lglib-12 -lintl -lXi -lXext -lX11 -lm DEFS = -DHAVE_CONFIG_H COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) LIBLIB_OBJS = alloca.o getopt.o getopt1.o strndup.o \ strdup.o strsep.o snprintf.o usleep.o md5.o LIBLIB_LTOBJS = alloca.lo getopt.lo getopt1.lo strndup.lo \ strdup.lo strsep.lo snprintf.lo usleep.lo md5.lo TARGETS = $(LIBLIB_OBJS) TARGETS = liblib.a .SUFFIXES: .SUFFIXES: .c .o .c.o: $(COMPILE) $< @test -f $@ || $(COMPILE) $< all: $(TARGETS) liblib.a: $(LIBLIB_OBJS) ar r $@ $(LIBLIB_OBJS) $(RANLIB) $@ install: all 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