Fix a bug in the make system that must have started showing up with some newer versio...
[newos.git] / kernel / addons / modules / bus_managers / pci / makefile
blobaaebcf3b26b78df4245f89dc9ea1ea42bf1a6e8a
1 # bus manager makefile
2 MY_SRCDIR := $(GET_LOCAL_DIR)
3 MY_TARGETDIR := $(call TOBUILDDIR, $(MY_SRCDIR))
4 MY_TARGET := $(MY_TARGETDIR)/pci
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_OBJS := \
8 pci.o
10 MY_INCLUDES := $(STDINCLUDE)
11 MY_CFLAGS := $(KERNEL_CFLAGS)
12 MY_LIBS := $(LIBKERNEL)
13 MY_LIBPATHS :=
14 MY_DEPS :=
15 MY_LINKSCRIPT := $(KERNEL_ADDONS_DIR)/ldscripts/$(ARCH)/addon.ld
17 include templates/kernel_addons.mk
19 endif