Merge branch 'clearing_make_file' into 'main'

Redirected error output from mv to /dev/null

See merge request simpleos/burritos!21
This commit is contained in:
François Autin 2023-05-10 10:27:24 +00:00
commit df0930850a

View File

@ -29,7 +29,7 @@ syscall: user_lib
$(MAKE) build -C test/syscall_tests/
$(RM) test/syscall_tests/*.o
mkdir -p ${TOPDIR}/target/guac/
find . -name '*.guac' -exec mv {} ${TOPDIR}/target/guac/ \;
find . -name '*.guac' -exec mv {} ${TOPDIR}/target/guac/ 2> /dev/null \;
clean:
$(MAKE) clean -C userlib/