2019-04-30 16:07:30 -05:00
|
|
|
installdir = ${pkgdir}/opt/aninix/Uniglot/
|
2019-04-30 15:53:55 -05:00
|
|
|
targets = Bash C CSharp
|
|
|
|
|
|
|
|
compile:
|
|
|
|
@echo Nothing to compile.
|
|
|
|
|
|
|
|
install: compile
|
|
|
|
mkdir -p ${installdir}
|
2020-06-15 00:17:38 -05:00
|
|
|
for target in ${targets}; do rsync -avzzl "$$target" ${installdir}; done
|
2019-04-30 15:53:55 -05:00
|
|
|
make checkperm
|
|
|
|
|
|
|
|
clean:
|
|
|
|
for i in `cat .gitignore`; do rm -Rf $$i; done
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm -Rf ${installdir}
|
|
|
|
|
|
|
|
test:
|
|
|
|
@echo Nothing to do.
|
|
|
|
|
|
|
|
checkperm:
|
|
|
|
chmod -R 0755 ${installdir}
|
|
|
|
chown root:root ${installdir}
|
|
|
|
|
|
|
|
diff: ${INSTALLFIR}
|
|
|
|
diff -rc . ${installdir}
|
|
|
|
|
|
|
|
reverse:
|
|
|
|
rsync -avzlp ${installdir} .
|