This website works better with JavaScript.
Home
Explore
Help
Sign In
MNT
/
reform-userland
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
update build scripts for xkbcomp, xkeyboard-config
master
mntmn
2 years ago
parent
62e3185dbe
commit
6d56039670
4 changed files
with
22 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
build.sh
+8
-0
build_xkbcomp.sh
+8
-0
build_xkeyboard-config.sh
+5
-0
clean.sh
+ 1
- 1
build.sh
View File
@@ -4,7 +4,7 @@ figlet clean
./clean.sh
for target in drm libinput mesa xorgproto xserver xf86-input-libinput; do
for target in drm libinput mesa xorgproto xserver xf86-input-libinput
xkbcomp xkeyboard-config
; do
figlet $target
./build_$target.sh
done
+ 8
- 0
build_xkbcomp.sh
View File
@@ -0,0 +1,8 @@
#!/bin/sh
cd xkbcomp
./autogen.sh
make -j4
make install
cd ..
+ 8
- 0
build_xkeyboard-config.sh
View File
@@ -0,0 +1,8 @@
#!/bin/sh
cd xkeyboard-config
./autogen.sh
make -j4
make install
cd ..
+ 5
- 0
clean.sh
View File
@@ -20,4 +20,9 @@ cd ..
cd xf86-input-libinput && make clean
cd ..
cd xkbcomp && make clean
cd ..
cd xkeyboard-config && make clean
cd ..