1# XMLF90 helper mk
2#
3# In order to hide the structure of this hierarchy, this file
4# will export the needed symbols for a client.
5#
6# All you need is to define XMLF90_ROOT in your makefile
7# to point to your installation of the XMLF90 library.
8#
9#----------------------------------------------------------
10#
11ifdef XMLF90_H__
12
13$(info multiple inclusions of xmlf90.mk ...)
14
15else
16
17XMLF90_H__ = 1
18
19XMLF90_ROOT_BUILD = @prefix@
20XMLF90_INCFLAGS   = -I$(XMLF90_ROOT_BUILD)/include
21XMLF90_LIBS       = $(XMLF90_ROOT_BUILD)/lib/libxmlf90.so
22
23endif
24