Sha256: b1179b33e68df35dbaadf21ef757bebb0f8fc0dc853ec63f364b818b762f6e1f

Contents?: true

Size: 797 Bytes

Versions: 5

Compression:

Stored size: 797 Bytes

Contents

# This is the developer's makefile, not the user's makefile.
# Don't use it unless you know exactly what you do!

SHELL = /bin/sh
MAKE = make
AUTOCONF = autoconf-2.63
AUTOHEADER = autoheader-2.63
ACLOCAL = aclocal-1.11
CP = cp
RM = rm -f

all : configures include/localcharset.h.build.in

autoconf/aclocal.m4 : $(wildcard m4/*.m4)
	$(ACLOCAL) -I m4 --output=$@

configures : configure config.h.in

configure : configure.ac autoconf/aclocal.m4
	$(AUTOCONF) --include autoconf

config.h.in : configure.ac autoconf/aclocal.m4
	$(AUTOHEADER) --include autoconf
	touch config.h.in

include/localcharset.h.build.in : include/localcharset.h.in include/export.h
	sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \
	    -e '/#define _LOCALCHARSET_H/r include/export.h' \
	  < $< > $@

force :

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
controller_scaffolding-1.0.3 test/dummy/libiconv-1.13.1/libcharset/Makefile.devel
controller_scaffolding-1.0.2 test/dummy/libiconv-1.13.1/libcharset/Makefile.devel
controller_scaffolding-1.0.1 test/dummy/libiconv-1.13.1/libcharset/Makefile.devel
controller_scaffolding-1.0.0 test/dummy/libiconv-1.13.1/libcharset/Makefile.devel
controller_scaffolding-0.1.5 test/dummy/libiconv-1.13.1/libcharset/Makefile.devel