summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801gx/Makefile.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/southbridge/intel/i82801gx/Makefile.mk')
-rw-r--r--src/southbridge/intel/i82801gx/Makefile.mk28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82801gx/Makefile.mk b/src/southbridge/intel/i82801gx/Makefile.mk
new file mode 100644
index 0000000000..b6fd0c324a
--- /dev/null
+++ b/src/southbridge/intel/i82801gx/Makefile.mk
@@ -0,0 +1,28 @@
+## SPDX-License-Identifier: GPL-2.0-only
+
+ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_I82801GX),y)
+
+bootblock-y += early_init.c
+bootblock-y += bootblock.c
+
+ramstage-y += i82801gx.c
+ramstage-y += fadt.c
+ramstage-y += ac97.c
+ramstage-y += azalia.c
+ramstage-y += ide.c
+ramstage-y += lpc.c
+ramstage-y += pci.c
+ramstage-y += pcie.c
+ramstage-y += sata.c
+ramstage-y += smbus.c
+ramstage-y += usb.c
+ramstage-y += usb_ehci.c
+
+smm-y += smihandler.c
+
+romstage-y += early_init.c
+romstage-y += early_cir.c
+
+CPPFLAGS_common += -I$(src)/southbridge/intel/i82801gx/include
+
+endif