update makefile
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
This commit is contained in:
parent
ca89a50c95
commit
9c895a3ced
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -15,10 +15,14 @@ view: all
|
|||
clean: all
|
||||
rm -rf ${DESTDIR}
|
||||
|
||||
public: all
|
||||
ask:
|
||||
@echo "Press return to publish..."
|
||||
@read avariable
|
||||
git push --mirror
|
||||
|
||||
public: ask public-f
|
||||
|
||||
public-f: all
|
||||
find ${DESTDIR} -type f -exec chmod 0644 {} \;
|
||||
find ${DESTDIR} -type d -exec chmod 0755 {} \;
|
||||
rsync -av --delete ${DESTDIR} ${PUBDIR}
|
||||
|
|
Loading…
Reference in a new issue