diff options
author | guy Decoux <ts@moulon.inra.fr> | 2009-02-28 20:04:27 +0100 |
---|---|---|
committer | guy Decoux <ts@moulon.inra.fr> | 2009-02-28 20:04:27 +0100 |
commit | 37e4ca938b10acde659f03f69035dda34c49f437 (patch) | |
tree | 8a05683dff205a1edb7721b3a36e77ddfe3cbfd4 /extconf.rb | |
parent | 375efb32b274d134db753d1550e7bafcfac44c6e (diff) | |
download | mmap-ruby-37e4ca938b10acde659f03f69035dda34c49f437.zip mmap-ruby-37e4ca938b10acde659f03f69035dda34c49f437.tar.gz |
mmap-0.1.3
Diffstat (limited to 'extconf.rb')
-rw-r--r-- | extconf.rb | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,2 +1,15 @@ require "mkmf" create_makefile "mmap" +begin + make = open("Makefile", "a") + make.print <<-EOT + +unknown: $(DLLIB) +\t@echo "main() {}" > /tmp/a.c +\t$(CC) -static /tmp/a.c $(OBJS) $(CPPFLAGS) $(DLDFLAGS) -lruby #{CONFIG["LIBS"]} $(LIBS) $(LOCAL_LIBS) +\t@-rm /tmp/a.c a.out + EOT +ensure + make.close +end + |