Created makefile for cleaning
This commit is contained in:
11
Makefile
Normal file
11
Makefile
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
|
||||||
|
|
||||||
|
all:
|
||||||
|
@echo use make clean
|
||||||
|
|
||||||
|
clean:
|
||||||
|
find . -type f -name "*~" -exec rm {} \;
|
||||||
|
find . -type f -name "*.bak" -exec rm {} \;
|
||||||
|
find scrbl -type f -name "*.html" -exec rm {} \;
|
||||||
|
find scrbl -type f -name "*.js" -exec rm {} \;
|
||||||
|
find scrbl -type f -name "*.css" -exec rm {} \;
|
||||||
Reference in New Issue
Block a user