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