-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
20 lines (17 loc) · 875 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.ONESHELL:
help:
@
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m Makefile functions \E[0m "
echo -e " \E[33;1m clean \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m please read the Makefile for more informations \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m I wish you happy making ^_^ \E[0m "
echo -e " \E[33;1m \E[0m "
clean*~:
rm -f *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~ */*/*/*/*/*~
clean:
make clean*~ &&\
echo -e "\E[33;1m [ok] clean directory \E[0m"