############################################################################### # # # Pakfire - The IPFire package management system # # Copyright (C) 2013 Pakfire development team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # ############################################################################### ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} AM_MAKEFLAGS = --no-print-directory AUTOMAKE_OPTIONS = color-tests # remove target it the command fails .DELETE_ON_ERROR: # keep itermediate files .SECONDARY: CLEANFILES = DISTCLEANFILES = EXTRA_DIST = AM_CPPFLAGS = \ -include $(top_builddir)/config.h \ -I $(top_srcdir)/include \ $(OUR_CPPFLAGS) AM_CFLAGS = $(OUR_CFLAGS) AM_LDFLAGS = $(OUR_LDFLAGS) pkgpyexec_LTLIBRARIES = # ------------------------------------------------------------------------------ dist_doc_DATA = \ COPYING # ------------------------------------------------------------------------------ dist_bin_SCRIPTS = \ src/sendprofile # ------------------------------------------------------------------------------ fireinfo_PYTHON = \ src/fireinfo/__init__.py \ src/fireinfo/bios.py \ src/fireinfo/cpu.py \ src/fireinfo/device.py \ src/fireinfo/hypervisor.py \ src/fireinfo/network.py \ src/fireinfo/system.py fireinfodir = $(pythondir)/fireinfo # ------------------------------------------------------------------------------ pkgpyexec_LTLIBRARIES += \ _fireinfo.la _fireinfo_la_SOURCES = \ src/_fireinfo/fireinfo.c _fireinfo_la_CFLAGS = \ $(AM_CFLAGS) \ $(PYTHON_DEVEL_CFLAGS) _fireinfo_la_LDFLAGS = \ $(AM_LDFLAGS) \ -shared \ -module \ -avoid-version _fireinfo_la_LIBADD = \ $(PYTHON_DEVEL_LIBS)