1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ## Process this file with automake to generate Makefile.in
- if DEBUG
- DEBUG_CFLAGS = -DDEBUG
- endif
- AUTOMAKE_OPTIONS = foreign nostdinc
- ACLOCAL_AMFLAGS = -I m4
- AM_CPPFLAGS = -I. -I$(top_srcdir)
- AM_LD = $(CC)
- AM_CFLAGS = -Wall $(DEBUG_CFLAGS)
- sbin_PROGRAMS = birq
- lib_LIBRARIES =
- noinst_HEADERS = \
- birq.h \
- irq.h \
- nl.h \
- cpumask.h \
- bitmap.h \
- non-atomic.h \
- cpu.h \
- statistics.h \
- balance.h
- birq_SOURCES = \
- birq.c \
- nl.c \
- irq_parse.c \
- cpu_parse.c \
- statistics.c \
- bitmap.c \
- balance.c
- birq_LDADD = liblub.a
- birq_DEPENDENCIES = liblub.a
- EXTRA_DIST = \
- lub/module.am \
- LICENCE \
- README
- include $(top_srcdir)/lub/module.am
|