diff options
Diffstat (limited to 'board/aspeed/ast2400/Makefile')
-rw-r--r-- | board/aspeed/ast2400/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/board/aspeed/ast2400/Makefile b/board/aspeed/ast2400/Makefile new file mode 100644 index 0000000000..1970ea16d1 --- /dev/null +++ b/board/aspeed/ast2400/Makefile @@ -0,0 +1,44 @@ +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(BOARD).a + +COBJS := ast2400.o flash.o flash_spi.o pci.o crc32.o slt.o regtest.o vfun.o vhace.o crt.o videotest.o mactest.o hactest.o mictest.o + +ifeq ($(CONFIG_FPGA_ASPEED),y) +SOBJS := platform_fpga.o +else ifeq ($(CONFIG_SLT_ASPEED),y) +SOBJS := platform_slt.o +else +SOBJS := platform.o +endif + +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) + +distclean: clean + rm -f $(LIB) core *.bak $(obj).depend + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude .depend + +######################################################################### |