2010-05-22 07:45:40 +02:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
# coding: utf-8
|
2012-05-07 17:02:45 +02:00
|
|
|
# Copyright 2010, 2011, 2012 Ali Polatel <alip@exherbo.org>
|
2010-05-22 07:45:40 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v3
|
|
|
|
|
|
|
|
require 'mkmf'
|
|
|
|
|
2017-03-12 12:59:13 +01:00
|
|
|
dir = File.join(ENV['NOTMUCH_SRCDIR'], 'lib')
|
2013-05-20 14:24:23 +02:00
|
|
|
|
|
|
|
# includes
|
|
|
|
$INCFLAGS = "-I#{dir} #{$INCFLAGS}"
|
|
|
|
|
2015-06-01 09:09:00 +02:00
|
|
|
if ENV['EXTRA_LDFLAGS']
|
|
|
|
$LDFLAGS += " " + ENV['EXTRA_LDFLAGS']
|
|
|
|
end
|
2013-05-20 14:24:23 +02:00
|
|
|
|
2015-06-01 09:09:01 +02:00
|
|
|
if not ENV['LIBNOTMUCH']
|
2013-05-20 14:24:23 +02:00
|
|
|
exit 1
|
|
|
|
end
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2015-06-01 09:09:01 +02:00
|
|
|
$LOCAL_LIBS += ENV['LIBNOTMUCH']
|
2021-05-17 21:39:15 +02:00
|
|
|
$LIBS += " -ltalloc"
|
2015-06-01 09:09:01 +02:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
# Create Makefile
|
|
|
|
dir_config('notmuch')
|
|
|
|
create_makefile('notmuch')
|