1
0
Fork 0
mirror of https://github.com/tailix/drivers.git synced 2024-11-20 11:06:32 -05:00
drivers/Makefile.am
2022-12-03 20:06:34 +04:00

25 lines
456 B
Makefile

include $(top_srcdir)/make/shared.am
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = autogen.sh
SUBDIRS = include
lib_LTLIBRARIES = libdrivers.la
libdrivers_la_SOURCES = \
src/foobar.c \
src/console.c \
src/shutdown.c
# Intel 8253-compatible programmable interval timer
if ASM_I386
libdrivers_la_SOURCES += src/intel_8253_pit.c
endif
# Intel 8259-compatible programmable interrupt controller
if ASM_I386
libdrivers_la_SOURCES += src/intel_8259_pic.c
endif