diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-10-31 13:51:32 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-11-02 15:27:40 +1100 |
commit | 99f146145c49e960af6e7da9391908cb30617227 (patch) | |
tree | b3ede2e0beaa0eafae02d77270f07c846beef375 /Makefile.main | |
parent | ed9c11c90d30484072a3d39d8b6660992699198e (diff) | |
download | skiboot-99f146145c49e960af6e7da9391908cb30617227.zip skiboot-99f146145c49e960af6e7da9391908cb30617227.tar.gz skiboot-99f146145c49e960af6e7da9391908cb30617227.tar.bz2 |
travis-ci: use Docker containers for a matrix of platforms
This greatly simplifies the build process for travis, yet makes it more
powerful and increases coverage without increasing wall time to test.
Travis has the concept of a build matrix, and we want to ensure we continue
to build succesfully on a variety of platforms and compiler combinations.
We limit what we run on some OSs to conserve vital sanity.
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'Makefile.main')
-rw-r--r-- | Makefile.main | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.main b/Makefile.main index 7918a18..62a659d 100644 --- a/Makefile.main +++ b/Makefile.main @@ -193,7 +193,7 @@ $(TARGET).elf: $(ALL_OBJS_2) $(TARGET).lds $(KERNEL) $(call Q,LD, $(CC) $(LDFLAGS) -T $(TARGET).lds $(ALL_OBJS_2) -o $@, $@) $(SUBDIRS): - $(call Q,MKDIR,mkdir $@, $@) + $(call Q,MKDIR,mkdir -p $@, $@) -include $(wildcard *.d) -include $(wildcard $(SUBDIRS:%=%/*.d)) |