blob: 4d42035c3ec5b6609a45af20cb5bd6cabf3ecec2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# Makefile for the nubus specific drivers.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now inherited from the
# parent makefile.
#
L_TARGET := nubus.a
ifeq ($(CONFIG_MODULES),y)
O_TARGET := nubus_n_syms.o
OX_OBJS := nubus_syms.o
O_OBJS := nubus.o
L_OBJS := nubus_n_syms.o
else
L_OBJS := nubus.o
endif
ifdef CONFIG_PROC_FS
L_OBJS += proc.o
endif
include $(TOPDIR)/Rules.make
|