diff options
author | Karel Kočí <cynerd@email.cz> | 2016-03-09 15:14:34 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-03-09 15:24:34 +0100 |
commit | 46fdca089bf60a776c58d4f6c1f9e65bb520de92 (patch) | |
tree | 77bbdf4fc0107aebfd6a8957a1d4639873c0d908 /Makefile | |
parent | bee96673c5853b254a75d91934d92395e4d3aa5c (diff) | |
download | avr-ioe-46fdca089bf60a776c58d4f6c1f9e65bb520de92.tar.gz avr-ioe-46fdca089bf60a776c58d4f6c1f9e65bb520de92.tar.bz2 avr-ioe-46fdca089bf60a776c58d4f6c1f9e65bb520de92.zip |
Add travis support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -52,6 +52,15 @@ menuconfig: @[ ! -f config ] || sed 's/="\(.*\)"/=\1/' config > "$(CONFIG)" @[ ! -f config ] || mv config "$(CONFIG).orig" @[ ! -f config.old ] || mv config.old "$(CONFIG).old" + +.PHONY: allyesconfig +allyesconfig: + @[ ! -f "$(CONFIG)" ] || [ ! -f "$(CONFIG).orig" ] || mv "$(CONFIG).orig" config + @$(MAKE) -f kconfig/GNUmakefile --no-print-directory \ + TOPDIR=. SRCDIR=kconfig allyesconfig + @[ ! -f config ] || sed 's/="\(.*\)"/=\1/' config > "$(CONFIG)" + @[ ! -f config ] || mv config "$(CONFIG).orig" + @[ ! -f config.old ] || mv config.old "$(CONFIG).old" # Note about this file moving madness: # avr-ioe is using Kconfig for configuration and it is not prepared too well for # nested projects (at least I don't know way). This unfortunately means that to |