flashcard-archive/archive/build.sh
lifehackerhansol a742b68bee
Add Makefile system to create frontend
Run `./build.sh` in `archive` folder. It will loop through all kernels,
and copy to `<project-root>/out`.
2023-08-13 23:03:45 -07:00

4 lines
39 B
Bash

for d in */ ; do
make -C "$d"
done