| ## |
| ## Licensed to the Apache Software Foundation (ASF) under one or more |
| ## contributor license agreements. See the NOTICE file distributed with |
| ## this work for additional information regarding copyright ownership. |
| ## The ASF licenses this file to You under the Apache License, Version 2.0 |
| ## (the "License"); you may not use this file except in compliance with |
| ## the License. You may obtain a copy of the License at |
| ## |
| ## http://www.apache.org/licenses/LICENSE-2.0 |
| ## |
| ## Unless required by applicable law or agreed to in writing, software |
| ## distributed under the License is distributed on an "AS IS" BASIS, |
| ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ## See the License for the specific language governing permissions and |
| ## limitations under the License. |
| ## |
| |
| ACLOCAL_AMFLAGS = "-Im4" |
| |
| SUBDIRS = . include os/linux/include |
| DIST_SUBDIRS = . include os/linux/include |
| |
| AM_CPPFLAGS = -I$(srcdir)/include -I$(srcdir)/os/linux/include -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -DIGNITE_IMPL |
| AM_CXXFLAGS = -Wall -std=c++0x |
| LIB_LDFLAGS = -no-undefined -version-info 1 |
| |
| COMMON_SRC = os/linux/src/concurrent_os.cpp \ |
| src/concurrent.cpp \ |
| src/java.cpp \ |
| src/exports.cpp \ |
| os/linux/src/common.cpp |
| |
| lib_LTLIBRARIES = libignite-common.la |
| libignite_common_la_SOURCES = $(COMMON_SRC) |
| libignite_common_la_LIBADD = -L$(JAVA_HOME)/jre/lib/amd64/server |
| libignite_common_la_LDFLAGS = $(LIB_LDFLAGS) -L/usr/local/lib -ljvm -version-info 0:0:0 -release $(PACKAGE_VERSION) |
| |
| pkgconfigdir = $(libdir)/pkgconfig |
| pkgconfig_DATA = ignite-common.pc |
| |
| clean-local: |
| $(RM) *.gcno *.gcda |
| |
| clean-docs: |
| $(RM) $(DX_CLEANFILES) |