epicyon/Makefile

23 lines
493 B
Makefile
Raw Normal View History

2020-03-05 14:00:39 +00:00
APP=epicyon
2020-03-09 17:40:00 +00:00
VERSION=1.1.0
2020-03-05 14:00:39 +00:00
2019-06-28 18:55:29 +00:00
all:
debug:
2020-03-05 14:00:39 +00:00
source:
rm -f *.*~ *~
2020-05-29 10:00:05 +00:00
rm -f translations/*~
2020-03-05 14:00:39 +00:00
rm -f orgs/*~
rm -f scripts/*~
rm -rf __pycache__
rm -f \#* \.#* src/*~
rm -fr deb.*
rm -f ../${APP}*.deb ../${APP}*.changes ../${APP}*.asc ../${APP}*.dsc
cd .. && mv ${APP} ${APP}-${VERSION} && tar -zcvf ${APP}_${VERSION}.orig.tar.gz ${APP}-${VERSION}/ && mv ${APP}-${VERSION} ${APP}
2019-06-28 18:55:29 +00:00
clean:
2019-10-03 09:59:08 +00:00
rm -f *.*~ *~
2019-11-09 09:38:19 +00:00
rm -f orgs/*~
2020-05-26 09:14:39 +00:00
rm -f website/EN/*~
rm -f gemini/EN/*~
2019-10-03 09:59:08 +00:00
rm -f scripts/*~
2019-06-28 18:55:29 +00:00
rm -rf __pycache__