58 lines
1.2 KiB
Bash
58 lines
1.2 KiB
Bash
|
|
||
|
function binary.build {
|
||
|
write -n "${target}:"
|
||
|
for i in ${src[@]}; do
|
||
|
write -n " ${i%.*}.o"
|
||
|
done
|
||
|
write " ${depends[$target]}"
|
||
|
write "\t@echo '$(LD ${target})'"
|
||
|
write "\t$Q\$(CC) -o ${target} \$(LDFLAGS) ${ldflags[$target]} ${src[@]//.c/.o}"
|
||
|
write
|
||
|
|
||
|
for i in ${src[@]}; do
|
||
|
write -n "${i%.c}.o: ${i}"
|
||
|
|
||
|
for h in *.h; do
|
||
|
if grep -q "#include \"$h\"" $i; then
|
||
|
write -n " $h"
|
||
|
fi
|
||
|
done
|
||
|
write
|
||
|
|
||
|
write "\t@echo '$(CC ${i%.c}.o)'"
|
||
|
write "\t$Q\$(CC) \$(CFLAGS) ${cflags[$target]} -c ${i}"
|
||
|
write
|
||
|
done
|
||
|
}
|
||
|
|
||
|
function binary.install {
|
||
|
local install="${install[$target]:-\$(BINDIR)}"
|
||
|
write "${target}.install: ${target}"
|
||
|
write "\t@echo '$(IN "${install}/${target}")'"
|
||
|
write "\t${Q}install -m0755 ${target} \$(DESTDIR)${install}/${target}"
|
||
|
write
|
||
|
}
|
||
|
|
||
|
function binary.uninstall {
|
||
|
local install="${install[$target]:-\$(BINDIR)}"
|
||
|
write "${target}.uninstall:"
|
||
|
write "\t@echo '$(RM ${install}/${target})'"
|
||
|
write "\t${Q}rm -f '\$(DESTDIR)${install}/${target}'"
|
||
|
write
|
||
|
}
|
||
|
|
||
|
function binary.clean {
|
||
|
write "${target}.clean:"
|
||
|
write "\t@echo '$(RM ${target})'"
|
||
|
write "\t${Q}rm -f ${target}"
|
||
|
write
|
||
|
|
||
|
for i in ${src[@]}; do
|
||
|
write "${i%.c}.o.clean:"
|
||
|
write "\t@echo '$(RM ${i%.c}.o)'"
|
||
|
write "\t${Q}rm -f ${i%.c}.o"
|
||
|
write
|
||
|
done
|
||
|
}
|
||
|
|