-rw-r--r-- | bin/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/Makefile b/bin/Makefile new file mode 100644 index 0000000..09a01c9 --- a/dev/null +++ b/bin/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | clean: | ||
2 | @for i in *; do \ | ||
3 | test "$$i" == "CVS" && continue; \ | ||
4 | test "$$i" == "Makefile" && continue; \ | ||
5 | test "$$i" == "README" && continue; \ | ||
6 | test "$$i" == "getprofile" && continue; \ | ||
7 | test "$$i" == "opie-reorgfiles" && continue; \ | ||
8 | test "$$i" == "opie-sh-howto.sh" && continue; \ | ||
9 | test "$$i" == "qpe-reorgfiles" && continue; \ | ||
10 | rm $$i; \ | ||
11 | done | ||
12 | |||
13 | all install ipk lupdate lrelease opie-lupdate opie-lrelease: | ||