]> git.ipfire.org Git - people/ms/u-boot.git/blame - fs/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / fs / Makefile
CommitLineData
045fa1e1
SW
1#
2# (C) Copyright 2000-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4# Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
5#
1a459660 6# SPDX-License-Identifier: GPL-2.0+
045fa1e1
SW
7#
8
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)libfs.o
12
13COBJS-y += fs.o
14
15COBJS := $(COBJS-y)
16SRCS := $(COBJS:.o=.c)
17OBJS := $(addprefix $(obj),$(COBJS))
18
19all: $(LIB)
20
21$(LIB): $(obj).depend $(OBJS)
22 $(call cmd_link_o_target, $(OBJS))
23
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
30
31#########################################################################