sdk-hwV1.3/lichee/brandy-2.0/spl/board/sun8iw21p1/Makefile

29 lines
568 B
Makefile

#/*
# * Copyright 2000-2009
# * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
# *
# */
include $(TOPDIR)/mk/config.mk
LIB = libboard.o
COBJS += board.o
COBJS += clock.o
SRCS := $(COBJS:.o=.c) $(SOBJS:.o=.S)
OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
all: $(LIB)
$(LIB): $(OBJS)
$(call cmd_link_o_target, $(OBJS))
#########################################################################
# defines $(obj).depend target
include $(TOPDIR)/mk/rules.mk
sinclude .depend
#########################################################################