Sha256: 32255611cf6c584edb6cae26d8dd68460c347042672b6702ad436f905b75a320

Contents?: true

Size: 910 Bytes

Versions: 13

Compression:

Stored size: 910 Bytes

Contents

SHELL=/bin/sh

# Path to ruby interpreter
RUBY=@RUBY@

# Any extra options from configure script to pass to 'setup.rb config'
RUBY_CONFIG_OPTS=@RUBY_CONFIG_OPTS@

# gem install expects to find these 2 lines
RUBYLIBDIR    = $(sitelibdir)$(target_prefix)
RUBYARCHDIR   = $(sitearchdir)$(target_prefix)


all: .config
	$(RUBY) setup.rb setup

install:
	$(RUBY) setup.rb install

clean: .config
	$(RUBY) setup.rb clean

distclean: .config
	$(RUBY) setup.rb clean
	rm -f Makefile ext/RMagick/extconf.rb metaconfig
	rm -f ext/RMagick/Makefile config.cache config.log
	rm -rf autom4te.cache

uninstall: .config
	$(RUBY) uninstall.rb $(RUBY_CONFIG_OPTS)

.config: metaconfig
	if test -n "$(RUBYLIBDIR)"; then \
		RUBYLIBDIR=--rbdir="$(RUBYLIBDIR)"; \
	fi; \
	if test -n "$(RUBYARCHDIR)"; then \
		RUBYARCHDIR=--sodir="$(RUBYARCHDIR)"; \
	fi; \
	$(RUBY) setup.rb config $$RUBYLIBDIR $$RUBYARCHDIR $(RUBY_CONFIG_OPTS)

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rmagick-1.12.0 Makefile.in
rmagick-1.13.0 Makefile.in
rmagick-1.11.1 Makefile.in
rmagick-1.11.0 Makefile.in
rmagick-1.14.0 Makefile.in
rmagick-1.14.1 Makefile.in
rmagick-1.15.0 Makefile.in
rmagick-1.15.1 Makefile.in
rmagick-1.15.2 Makefile.in
rmagick-1.15.3 Makefile.in
rmagick-1.15.4 Makefile.in
rmagick-1.15.6 Makefile.in
rmagick-1.15.5 Makefile.in