aboutsummaryrefslogtreecommitdiffstats
path: root/anime-face-detector/make.bat
diff options
context:
space:
mode:
Diffstat (limited to 'anime-face-detector/make.bat')
-rw-r--r--anime-face-detector/make.bat20
1 files changed, 0 insertions, 20 deletions
diff --git a/anime-face-detector/make.bat b/anime-face-detector/make.bat
deleted file mode 100644
index b0d9bff..0000000
--- a/anime-face-detector/make.bat
+++ /dev/null
@@ -1,20 +0,0 @@
-@echo off
-if /i "%1" == "clean" goto clean
-goto all
-
-:all
-python setup.py build_ext --inplace
-rd /s /q build
-
-goto exit
-
-
-
-:clean
-del /f /s /q *.cpp
-del /f /s /q *.c
-del /f /s /q *.pyd
-
-goto exit
-
-:exit