diff options
Diffstat (limited to 'roms/skiboot/hw/Makefile.inc')
-rw-r--r-- | roms/skiboot/hw/Makefile.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/roms/skiboot/hw/Makefile.inc b/roms/skiboot/hw/Makefile.inc new file mode 100644 index 000000000..37256d3cc --- /dev/null +++ b/roms/skiboot/hw/Makefile.inc @@ -0,0 +1,19 @@ +# -*-Makefile-*- +SUBDIRS += hw +HW_OBJS = xscom.o chiptod.o lpc.o lpc-uart.o psi.o +HW_OBJS += homer.o slw.o occ.o fsi-master.o centaur.o imc.o +HW_OBJS += nx.o nx-rng.o nx-crypto.o nx-compress.o nx-842.o nx-gzip.o +HW_OBJS += phb3.o sfc-ctrl.o fake-rtc.o bt.o p8-i2c.o prd.o +HW_OBJS += dts.o lpc-rtc.o npu.o npu-hw-procedures.o xive.o phb4.o +HW_OBJS += fake-nvram.o lpc-mbox.o npu2.o npu2-hw-procedures.o +HW_OBJS += npu2-common.o npu2-opencapi.o phys-map.o sbe-p9.o capp.o +HW_OBJS += occ-sensor.o vas.o sbe-p8.o dio-p9.o lpc-port80h.o cache-p9.o +HW_OBJS += npu-opal.o npu3.o npu3-nvlink.o npu3-hw-procedures.o +HW_OBJS += ocmb.o xive2.o +HW=hw/built-in.a + +include $(SRC)/hw/fsp/Makefile.inc +include $(SRC)/hw/ast-bmc/Makefile.inc +include $(SRC)/hw/ipmi/Makefile.inc + +$(HW): $(HW_OBJS:%=hw/%) $(FSP) $(EC) $(AST_BMC) $(IPMI) |