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

26 lines
456 B
Text
Raw Normal View History

2022-12-03 10:00:13 -05:00
include $(top_srcdir)/make/shared.am
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = autogen.sh
SUBDIRS = include
lib_LTLIBRARIES = libdrivers.la
libdrivers_la_SOURCES = \
2022-12-03 11:06:06 -05:00
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