
Editing fonts by editing text files is really slow and boring. A simple font editor seems like a good way to take LibGUI for a spin.
18 lines
335 B
Bash
Executable file
18 lines
335 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 clean &&\
|
|
make && \
|
|
sudo ./sync.sh
|
|
|