Tidying in makefile
This commit is contained in:
parent
ac44c0695b
commit
6becc4b2ba
7
Makefile
7
Makefile
|
@ -11,8 +11,9 @@ rmtranslations:
|
||||||
bash -c "./translate remove"
|
bash -c "./translate remove"
|
||||||
alltranslations:
|
alltranslations:
|
||||||
bash -c "./translate translations"
|
bash -c "./translate translations"
|
||||||
tidy:
|
tidyup:
|
||||||
./tidy src/*
|
./tidyup src/*
|
||||||
|
rm -f src/*~
|
||||||
source:
|
source:
|
||||||
tar -cvf ../${APP}_${VERSION}.orig.tar ../${APP}-${VERSION} --exclude-vcs
|
tar -cvf ../${APP}_${VERSION}.orig.tar ../${APP}-${VERSION} --exclude-vcs
|
||||||
gzip -f9n ../${APP}_${VERSION}.orig.tar
|
gzip -f9n ../${APP}_${VERSION}.orig.tar
|
||||||
|
@ -61,6 +62,8 @@ uninstall:
|
||||||
rm -rf /etc/${APP}
|
rm -rf /etc/${APP}
|
||||||
bash -c "./translate uninstall"
|
bash -c "./translate uninstall"
|
||||||
clean:
|
clean:
|
||||||
|
./tidyup src/*
|
||||||
|
rm -f src/*~
|
||||||
rm -f \#* \.#* debian/*.substvars debian/*.log
|
rm -f \#* \.#* debian/*.substvars debian/*.log
|
||||||
rm -fr deb.* debian/${APP}
|
rm -fr deb.* debian/${APP}
|
||||||
rm -f ../${APP}*.deb ../${APP}*.changes ../${APP}*.asc ../${APP}*.dsc
|
rm -f ../${APP}*.deb ../${APP}*.changes ../${APP}*.asc ../${APP}*.dsc
|
||||||
|
|
Loading…
Reference in New Issue