Skip to content

Commit 35cbe57

Browse files
committed
Merge branch 'dev' into dev-stable
2 parents 8ff17f6 + 0043f97 commit 35cbe57

File tree

473 files changed

+2445
-5191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

473 files changed

+2445
-5191
lines changed

.travis.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ addons:
1010
script:
1111
- bash -c 'shopt -s globstar nullglob; shellcheck -s bash --exclude=SC2068 -S error **/*.{sh,ksh,bash}'
1212
- bash -c 'shopt -s globstar nullglob; shellcheck -s bash --exclude=SC2068 -S error tools/*.{sh,ksh,bash}'
13-
- cd system/cpp-src/mkalteriso
14-
- mkdir -p build
15-
- cd build
16-
- cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
17-
- make
18-
1913
git:
2014
submodules: false
2115
language: bash

Makefile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ARCH_x86_64 := --arch x86_64
66
ARCH_i686 := --arch i686
77
CURRENT_DIR := ${shell dirname $(dir $(abspath $(lastword $(MAKEFILE_LIST))))}/${shell basename $(dir $(abspath $(lastword $(MAKEFILE_LIST))))}
88

9-
full:mkalteriso
9+
full:
1010
@sudo ${CURRENT_DIR}/tools/fullbuild.sh -d
1111
@make clean
1212

13-
basic-64 basic-32 cinnamon-64 cinnamon-32 gnome-64 i3-64 i3-32 lxde-64 lxde-32 plasma-64 releng-32 releng-64 serene-64 serene-32 xfce-64 xfce-32 xfce-pro-64:mkalteriso
13+
basic-64 basic-32 cinnamon-64 cinnamon-32 gnome-64 i3-64 i3-32 lxde-64 lxde-32 plasma-64 releng-32 releng-64 serene-64 serene-32 xfce-64 xfce-32 xfce-pro-64:
1414
$(eval CHANNEL=${shell echo ${@} | cut -d '-' -f 1})
1515
$(eval ARCHITECTURE=${shell echo ${@} | cut -d '-' -f 2})
1616
@case ${ARCHITECTURE} in\
@@ -23,10 +23,6 @@ menuconfig/build/mconf::
2323
@mkdir -p menuconfig/build
2424
(cd menuconfig/build ; cmake -GNinja .. ; ninja -j4 )
2525

26-
mkalteriso:
27-
@mkdir -p system/cpp-src/mkalteriso/build
28-
@(cd system/cpp-src/mkalteriso/build ; cmake -GNinja .. ; ninja -j4 ; cp -f mkalteriso ../../../)
29-
3026
menuconfig:menuconfig/build/mconf menuconfig-script/kernel_choice
3127
@menuconfig/build/mconf menuconfig-script/rootconf
3228

@@ -40,7 +36,7 @@ build_option:
4036
clean:
4137
@sudo ${CURRENT_DIR}/${BUILD_SCRIPT} clean
4238

43-
build:build_option mkalteriso
39+
build:build_option
4440
$(eval BUILD_OPTION := $(shell cat ${CURRENT_DIR}/.build_option))
4541
@sudo ${CURRENT_DIR}/${BUILD_SCRIPT} ${BUILD_OPTION}
4642

0 commit comments

Comments
 (0)