mirror of
https://github.com/AuxXxilium/kmod.git
synced 2024-11-24 07:20:52 +07:00
eee1345cf2
It doesn't run with `make check' since o It's dangerous o It needs to be run as root o It needs an argument, otherwise it removes the first module with use_count==0
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
EXTRA_DIST = autogen.sh
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
AM_MAKEFLAGS = --no-print-directory
|
|
|
|
AM_CPPFLAGS = \
|
|
-include $(top_builddir)/config.h \
|
|
-I$(top_srcdir)/libkmod \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\"
|
|
|
|
AM_CFLAGS = \
|
|
-fvisibility=hidden \
|
|
-ffunction-sections \
|
|
-fdata-sections
|
|
|
|
AM_LDFLAGS = \
|
|
-Wl,--gc-sections \
|
|
-Wl,--as-needed
|
|
|
|
CLEANFILES =
|
|
|
|
LIBKMOD_CURRENT=0
|
|
LIBKMOD_REVISION=0
|
|
LIBKMOD_AGE=0
|
|
|
|
include_HEADERS = libkmod/libkmod.h
|
|
lib_LTLIBRARIES = libkmod/libkmod.la
|
|
|
|
libkmod_libkmod_la_SOURCES =\
|
|
libkmod/libkmod.h \
|
|
libkmod/libkmod-private.h \
|
|
libkmod/macro.h \
|
|
libkmod/libkmod.c \
|
|
libkmod/libkmod-list.c \
|
|
libkmod/libkmod-loaded.c
|
|
|
|
EXTRA_DIST += libkmod/libkmod.sym
|
|
|
|
libkmod_libkmod_la_LDFLAGS = $(AM_LDFLAGS) \
|
|
-version-info $(LIBKMOD_CURRENT):$(LIBKMOD_REVISION):$(LIBKMOD_AGE) \
|
|
-Wl,--version-script=$(top_srcdir)/libkmod/libkmod.sym
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libkmod/libkmod.pc
|
|
|
|
TESTS = test/test-init test/test-loaded
|
|
|
|
check_PROGRAMS = test/test-init test/test-loaded test/test-rmmod
|
|
test_test_init_SOURCES = test/test-init.c
|
|
test_test_init_LDADD = libkmod/libkmod.la
|
|
|
|
test_test_loaded_SOURCES = test/test-loaded.c
|
|
test_test_loaded_LDADD = libkmod/libkmod.la
|
|
|
|
noinst_PROGRAMS = test/test-rmmod $(check_PROGRAMS)
|
|
test_test_rmmod_SOURCES = test/test-rmmod.c
|
|
test_test_rmmod_LDADD = libkmod/libkmod.la
|