Makefile 331 B

1234567891011121314151617
  1. # for SGlinux builds
  2. -include $(ROOTDIR)/modules/.config
  3. obj-$(CONFIG_OCF_CRYPTOCTEON) += cryptocteon.o
  4. obj ?= .
  5. EXTRA_CFLAGS += -I$(obj)/.. -I$(obj)/
  6. ifdef CONFIG_OCF_CRYPTOCTEON
  7. # you need the cavium crypto component installed
  8. EXTRA_CFLAGS += -I$(ROOTDIR)/prop/include
  9. endif
  10. ifdef TOPDIR
  11. -include $(TOPDIR)/Rules.make
  12. endif