]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/amcc/luan/Makefile
punt unused clean/distclean targets
[karo-tx-uboot.git] / board / amcc / luan / Makefile
index 5f3e34e246816ffd9af5c145cf3bfa7d17e1266a..284629f23837a45abec56f062971e3bef96c8b84 100644 (file)
@@ -23,7 +23,7 @@
 
 include $(TOPDIR)/config.mk
 
-LIB    = $(obj)lib$(BOARD).a
+LIB    = $(obj)lib$(BOARD).o
 
 COBJS  = $(BOARD).o flash.o
 SOBJS  = init.o
@@ -33,13 +33,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
 SOBJS  := $(addprefix $(obj),$(SOBJS))
 
 $(LIB):        $(OBJS) $(SOBJS)
-       $(AR) crv $@ $(OBJS)
-
-clean:
-       rm -f $(SOBJS) $(OBJS)
-
-distclean:     clean
-       rm -f $(LIB) core *.bak .depend
+       $(call cmd_link_o_target, $(OBJS))
 
 #########################################################################