OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [armnommu/] [drivers/] [Makefile] - Blame information for rev 1782

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1622 jcastillo
#
2
# Makefile for the linux kernel device drivers.
3
#
4
# Note! Dependencies are done automagically by 'make dep', which also
5
# removes any old dependencies. DON'T put your own dependencies here
6
# unless it's something special (ie not a .c file).
7
#
8
# Note 2! The CFLAGS definitions are now in the main makefile...
9
 
10
SUB_DIRS     := block char net #streams
11
MOD_SUB_DIRS := $(SUB_DIRS)
12
ALL_SUB_DIRS := $(SUB_DIRS) scsi sound
13
 
14
# If CONFIG_SCSI is set, the core of scsi support will be added to the kernel,
15
# but some of the low-level things may also be modules.
16
ifeq ($(CONFIG_SCSI),y)
17
SUB_DIRS += scsi
18
MOD_SUB_DIRS += scsi
19
else
20
  ifeq ($(CONFIG_SCSI),m)
21
  MOD_SUB_DIRS += scsi
22
  endif
23
endif
24
 
25
ifeq ($(CONFIG_SOUND),y)
26
SUB_DIRS += sound
27
else
28
  ifeq ($(CONFIG_SOUND),m)
29
  MOD_SUB_DIRS += sound
30
  endif
31
endif
32
 
33
include $(TOPDIR)/Rules.make
34
 
35
mrproper:
36
        set -e; for i in $(ALL_SUB_DIRS); do $(MAKE) -C $$i mrproper; done

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.