########################################################### ### Makefile for the GNU PIC Library ### ### Copyright (C) 2005 by Raphael Neider ### ### The GNU PIC Library was originally designed and ### implemented by ### Vangelis Rokas ### ### It is currently maintained by ### Raphael Neider ### ### This file may be distributed under the terms of the the ### GNU General Public License (GPL). See COPYING for details. ### ### $Id$ ### topsrcdir=.. SUBDIRS = adc i2c usart ifeq ($(origin IO_ARCH),undefined) include $(topsrcdir)/Makefile.common .PHONY : all clean clean-intermediate install # I create $(builddir)/$${arch} right here in order to prevent # the sub-make's `builddir´ rules from aborting if another sub-make # already created the above directory (happened on Alpha). all clean clean-intermediate install : $(Q)+cat $(topsrcdir)/pics.build \ | $(SED) -e "s,[ \t]*#.*$$,," \ | $(GREP) -v "^[ \t]*$$" \ | while read arch; do \ [ "x$${arch}" = "x" ] \ || ( [ -d "$(builddir)/$${arch}" ] || $(MKDIR) "$(builddir)/$${arch}"; \ $(MAKE) MKLIB=libio18f$${arch}.lib builddir=$(builddir)/$${arch} ARCH=$${arch} IO_ARCH=$${arch} $(MAKECMDGOALS); ) \ || exit 1; \ done include $(topsrcdir)/Makefile.rules else include $(topsrcdir)/Makefile.subdir # prevent library to be build in $(SUBDIRS) as well unexport MKLIB endif