]> git.ipfire.org Git - people/ms/u-boot.git/blame - fs/fdos/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / fs / fdos / Makefile
CommitLineData
2262cfee 1#
f9328639
MB
2# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
2262cfee 5# (C) Copyright 2002
fa82f871 6# Stäubli Faverges - <www.staubli.com>
2262cfee
WD
7# Pierre AUBERT p.aubert@staubli.com
8#
9#
1a459660 10# SPDX-License-Identifier: GPL-2.0+
2262cfee
WD
11#
12
13include $(TOPDIR)/config.mk
14
6d8962e8 15LIB = $(obj)libfdos.o
2262cfee
WD
16
17AOBJS =
08ab4e17 18COBJS-$(CONFIG_CMD_FDOS) := fat.o vfat.o dev.o fdos.o fs.o subdir.o
f9328639 19
08ab4e17
JCPV
20SRCS := $(AOBJS:.o=.S) $(COBJS-y:.o=.c)
21OBJS := $(addprefix $(obj),$(AOBJS) $(COBJS-y))
2262cfee
WD
22
23#CPPFLAGS +=
24
25all: $(LIB) $(AOBJS)
26
f9328639 27$(LIB): $(obj).depend $(OBJS)
6d8962e8 28 $(call cmd_link_o_target, $(OBJS))
2262cfee
WD
29
30
31#########################################################################
32
f9328639
MB
33# defines $(obj).depend target
34include $(SRCTREE)/rules.mk
2262cfee 35
f9328639 36sinclude $(obj).depend
2262cfee
WD
37
38#########################################################################