URL
https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk
Subversion Repositories riscv_vhdl
[/] [riscv_vhdl/] [trunk/] [examples/] [isrdemo/] [makefiles/] [util.mak] - Rev 5
Compare with Previous | Blame | View Log
# mkdir: -p = --parents. No error if dir exists
# -v = --verbose. print a message for each created directory
MKDIR = mkdir -pv
# rm: -r = --recursive. Remove the contents of dirs recursively
# -v = --verbose. Explain what is being done
# -f = --force.Ignore nonexistent files, never prompt
# --no-preserve-root.
RM = rm -rvf --no-preserve-root
ECHO = echo
export MKDIR RM ECHO