Branch
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
# Makefile for libiconv/install-tests
#### Start of system configuration section. ####
# Directories used by "make":
srcdir = @srcdir@
top_srcdir = @top_srcdir@
# Directories used by "make install":
prefix = @prefix@
local_prefix = /usr/local
includedir = @includedir@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
# Programs used by "make installcheck":
CC = @CC@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
EXEEXT = @EXEEXT@
RM = rm -f
@SET_MAKE@
#### End of system configuration section. ####
SHELL = @SHELL@
all :
mostlyclean : clean
clean : force
$(RM) test-version test-version$(EXEEXT) test-api test-api$(EXEEXT)
distclean : clean
$(RM) Makefile
maintainer-clean : distclean
installcheck :
$(CC) -I$(includedir) -L$(libdir) \
$(CPPFLAGS) \
$(CFLAGS) $(LDFLAGS) \
-o test-version $(srcdir)/test-version.c -liconv
@AUGMENT_SHLIBPATH@ ./test-version
rm -rf test-version test-version$(EXEEXT)
$(CC) -I$(includedir) -L$(libdir) \
$(CPPFLAGS) \
$(CFLAGS) $(LDFLAGS) \
-o test-api $(srcdir)/test-api.c -liconv
@AUGMENT_SHLIBPATH@ ./test-api
rm -rf test-api test-api$(EXEEXT)
PATH='$(bindir)'@PATH_SEPARATOR@"$$PATH"; iconv --version | grep 'GNU libiconv' > /dev/null
# List of source files.
SOURCE_FILES = \
Makefile.in \
test-version.c \
test-api.c
# List of distributed files imported from other packages.
IMPORTED_FILES =
# List of distributed files generated by autotools or Makefile.devel.
GENERATED_FILES =
# List of distributed files generated by "make".
DISTRIBUTED_BUILT_FILES =
# List of distributed files.
DISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)
distdir : $(DISTFILES)
for file in $(DISTFILES); do \
if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \
cp -p "$$dir/$$file" '$(distdir)'/$$file || exit 1; \
done
force :