stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2006 |
| 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 5 | # (C) Copyright 2003 |
| 6 | # Pavel Bartusek, Sysgo Real-Time Solutions AG, pba@sysgo.de |
| 7 | # |
| 8 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | # SPDX-License-Identifier: GPL-2.0+ |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 10 | # |
| 11 | |
| 12 | include $(TOPDIR)/config.mk |
| 13 | |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 14 | LIB = $(obj)libext4fs.o |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 15 | |
| 16 | AOBJS = |
Stephen Warren | 03e2ecf | 2012-10-22 06:43:50 +0000 | [diff] [blame] | 17 | COBJS-$(CONFIG_FS_EXT4) := ext4fs.o ext4_common.o dev.o |
Simon Glass | 293d7fb | 2012-12-26 09:53:28 +0000 | [diff] [blame] | 18 | COBJS-$(CONFIG_EXT4_WRITE) += ext4_write.o ext4_journal.o crc16.o |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 19 | |
Jean-Christophe PLAGNIOL-VILLARD | 08ab4e1 | 2008-08-31 04:24:56 +0200 | [diff] [blame] | 20 | SRCS := $(AOBJS:.o=.S) $(COBJS-y:.o=.c) |
| 21 | OBJS := $(addprefix $(obj),$(AOBJS) $(COBJS-y)) |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 22 | |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 23 | |
| 24 | all: $(LIB) $(AOBJS) |
| 25 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 26 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 27 | $(call cmd_link_o_target, $(OBJS)) |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 28 | |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 29 | ######################################################################### |
| 30 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 31 | # defines $(obj).depend target |
| 32 | include $(SRCTREE)/rules.mk |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 33 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 34 | sinclude $(obj).depend |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 35 | |
| 36 | ######################################################################### |