X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=board%2Fpleb2%2FMakefile;h=fef0eb3094e176e453be474f7739230c72ed5d1d;hb=79f240f7ecc0506b43ac50d1ea405ff6540d4d57;hp=5fdc874dfe25c2e719dbfb7aa078f3ecb66ece64;hpb=6310eb9da74b1cf33194ae88275cc63b76e7a764;p=oweals%2Fu-boot.git diff --git a/board/pleb2/Makefile b/board/pleb2/Makefile index 5fdc874dfe..fef0eb3094 100644 --- a/board/pleb2/Makefile +++ b/board/pleb2/Makefile @@ -1,6 +1,6 @@ # -# (C) Copyright 2000 +# (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this @@ -24,13 +24,17 @@ include $(TOPDIR)/config.mk -LIB = lib$(BOARD).a +LIB = $(obj)lib$(BOARD).a -OBJS := pleb2.o flash.o -SOBJS := memsetup.o +COBJS := pleb2.o flash.o +SOBJS := lowlevel_init.o -$(LIB): $(OBJS) $(SOBJS) - $(AR) crv $@ $(OBJS) $(SOBJS) +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) +SOBJS := $(addprefix $(obj),$(SOBJS)) + +$(LIB): $(obj).depend $(OBJS) $(SOBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) clean: rm -f $(SOBJS) $(OBJS) @@ -40,9 +44,9 @@ distclean: clean ######################################################################### -.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) - $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ +# defines $(obj).depend target +include $(SRCTREE)/rules.mk --include .depend +sinclude $(obj).depend #########################################################################