]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/pcs440ep/Makefile
bootstage: Convert net progress numbers to enums
[karo-tx-uboot.git] / board / pcs440ep / Makefile
index 40446884c8a32d8c86d8223fef94a82a1fb2468f..bf4d3e86e5c72dc2c3f662af5846e1f0c2d6a3cc 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) $(ARFLAGS) $@ $(OBJS)
-
-clean:
-       rm -f $(SOBJS) $(OBJS)
-
-distclean:     clean
-       rm -f $(LIB) core *.bak $(obj).depend
+       $(call cmd_link_o_target, $(OBJS))
 
 #########################################################################