Makefile 206 B

12345678910111213141516
  1. .PATH: ${SRCTOP}/sys/dev/iicbus/adc
  2. KMOD= pcf8591
  3. SRCS= pcf8591.c
  4. SRCS+= \
  5. bus_if.h \
  6. device_if.h \
  7. iicbus_if.h \
  8. opt_platform.h
  9. .if !empty(OPT_FDT)
  10. SRCS+= ofw_bus_if.h
  11. .endif
  12. .include <bsd.kmod.mk>