1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# -*- Automake -*-
#
# Makefile for the LibPSML package
#
# Copyright (C) 2017 Yann Pouillon
#
# This file is part of the LibPSML software package. For license information,
# please see the COPYING file in the top-level directory of the source
# distribution.
#
# ------------------------------------ #
#
# Top makefile
#
# Autotools parameters
ACLOCAL_AMFLAGS = -I config/m4
# Subdirectories containing makefiles
SUBDIRS = src examples doc
# Support for pkg-config (see http://pkg-config.freedesktop.org/wiki/)
pkgconfigdir = $(prefix)/lib/pkgconfig
pkgconfig_DATA = config/data/libpsml.pc
# Support for SIESTA's .mk files
siestadir = $(datarootdir)/org.siesta-project
siesta_DATA = config/data/psml.mk
# Files to distribute in the source package
EXTRA_DIST = \
LICENSE \
README.md \
config/data/libpsml.pc.in \
config/data/libpsml-config.yml.in \
config/data/psml.mk.in \
CMakeLists.txt \
config/cmake/FindCustomxmlf90.cmake \
config/cmake/LibpsmlFindPackage.cmake \
config/cmake/check_xmlf90_stat.cmake \
config/template.cmake \
config/template.pkgconf \
examples/CMakeLists.txt \
src/CMakeLists.txt
# Custom targets
distclean-local:
rm -f $(distdir).tar.bz2 $(distdir).tar.gz $(distdir).tar.xz
|