]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - post/rules.mk
post: convert makefiles to Kbuild style
[karo-tx-uboot.git] / post / rules.mk
diff --git a/post/rules.mk b/post/rules.mk
deleted file mode 100644 (file)
index b25ebbf..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# (C) Copyright 2002-2006
-# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
-#
-# SPDX-License-Identifier:     GPL-2.0+
-#
-
-include $(TOPDIR)/config.mk
-
-COBJS  := $(COBJS-y)
-AOBJS  := $(AOBJS-y)
-SRCS   := $(AOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS   := $(addprefix $(obj),$(AOBJS) $(COBJS))
-LIB    := $(obj)$(LIB)
-
-CPPFLAGS += -I$(TOPDIR)
-
-all:   $(LIB)
-
-$(LIB):        $(obj).depend $(OBJS)
-       $(call cmd_link_o_target, $(OBJS))
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################