Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 1 | # |
Marek Vasut | f905432 | 2010-07-22 16:51:52 +0200 | [diff] [blame] | 2 | # Voipac PXA270 Support |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 3 | # |
Marek Vasut | f905432 | 2010-07-22 16:51:52 +0200 | [diff] [blame] | 4 | # Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com> |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 5 | # |
| 6 | # This program is free software; you can redistribute it and/or |
| 7 | # modify it under the terms of the GNU General Public License as |
| 8 | # published by the Free Software Foundation; either version 2 of |
| 9 | # the License, or (at your option) any later version. |
| 10 | # |
| 11 | # This program is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. |
| 15 | # |
| 16 | # You should have received a copy of the GNU General Public License |
| 17 | # along with this program; if not, write to the Free Software |
| 18 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 19 | # MA 02111-1307 USA |
| 20 | # |
| 21 | |
| 22 | include $(TOPDIR)/config.mk |
| 23 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 24 | LIB = $(obj)lib$(BOARD).o |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 25 | |
Marek Vasut | 411b9ea | 2011-10-31 14:17:21 +0100 | [diff] [blame] | 26 | ifndef CONFIG_SPL_BUILD |
Marek Vasut | 68e8a28 | 2010-08-08 15:55:50 +0200 | [diff] [blame] | 27 | COBJS := vpac270.o |
Marek Vasut | 411b9ea | 2011-10-31 14:17:21 +0100 | [diff] [blame] | 28 | else |
| 29 | COBJS := onenand.o |
| 30 | endif |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 31 | |
Marek Vasut | 720a650 | 2010-09-28 15:50:49 +0200 | [diff] [blame] | 32 | SRCS := $(COBJS:.o=.c) |
Marek Vasut | 68e8a28 | 2010-08-08 15:55:50 +0200 | [diff] [blame] | 33 | OBJS := $(addprefix $(obj),$(COBJS)) |
Marek Vasut | 68e8a28 | 2010-08-08 15:55:50 +0200 | [diff] [blame] | 34 | |
Marek Vasut | 720a650 | 2010-09-28 15:50:49 +0200 | [diff] [blame] | 35 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 36 | $(call cmd_link_o_target, $(OBJS)) |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 37 | |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 38 | ######################################################################### |
| 39 | |
Marek Vasut | 68e8a28 | 2010-08-08 15:55:50 +0200 | [diff] [blame] | 40 | # defines $(obj).depend target |
| 41 | include $(SRCTREE)/rules.mk |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 42 | |
Marek Vasut | 68e8a28 | 2010-08-08 15:55:50 +0200 | [diff] [blame] | 43 | sinclude $(obj).depend |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 44 | |
| 45 | ######################################################################### |