mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-04 21:17:45 +01:00
16 lines
324 B
Makefile
16 lines
324 B
Makefile
include $(TOPDIR)/config.mk
|
|
|
|
LIB := libnand.a
|
|
|
|
OBJS := nand.o nand_base.o nand_ids.o nand_ecc.o nand_bbt.o
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
$(AR) crv $@ $(OBJS)
|
|
|
|
#########################################################################
|
|
|
|
.depend: Makefile $(OBJS:.o=.c)
|
|
$(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
|
|
|
|
sinclude .depend
|