mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
887b4a7a1a
Let GButton have an optional icon (GraphicsBitmap) that gets rendered in the middle of the button if present. Also add GraphicsBitmap::load_from_file() which allows mmap'ed RGBA32 files. I wrote a little program to take "raw" files from GIMP and swizzle them into the correct byte order.
22 lines
441 B
Bash
Executable file
22 lines
441 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo id
|
|
|
|
make -C ../LibC clean && \
|
|
make -C ../LibC && \
|
|
make -C ../LibGUI clean && \
|
|
make -C ../LibGUI && \
|
|
make -C ../Userland clean && \
|
|
make -C ../Userland && \
|
|
make -C ../Terminal clean && \
|
|
make -C ../Terminal && \
|
|
make -C ../FontEditor clean && \
|
|
make -C ../FontEditor && \
|
|
make -C ../Clock clean && \
|
|
make -C ../Clock && \
|
|
make -C ../Launcher clean && \
|
|
make -C ../Launcher && \
|
|
make clean &&\
|
|
make && \
|
|
sudo ./sync.sh
|
|
|