mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 17:10:11 +00:00
17 lines
293 B
Makefile
17 lines
293 B
Makefile
|
include $(TOPDIR)/config.mk
|
||
|
|
||
|
LIB := libnand_legacy.a
|
||
|
|
||
|
OBJS := nand_legacy.o
|
||
|
all: $(LIB)
|
||
|
|
||
|
$(LIB): $(OBJS)
|
||
|
$(AR) crv $@ $(OBJS)
|
||
|
|
||
|
#########################################################################
|
||
|
|
||
|
.depend: Makefile $(OBJS:.o=.c)
|
||
|
$(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
|
||
|
|
||
|
sinclude .depend
|