update Makefile.
Signed-off-by: cxykevin <cxykevin@yeah.net>
This commit is contained in:
parent
73006a60d6
commit
e2e7d0b504
11
Makefile
11
Makefile
|
@ -39,7 +39,11 @@ endif
|
||||||
env\python.exe: tmp/py/python.zip
|
env\python.exe: tmp/py/python.zip
|
||||||
7z x -y -aos -oenv/ tmp/py/python.zip
|
7z x -y -aos -oenv/ tmp/py/python.zip
|
||||||
install: dist/PEinjector.7z installer/install.py
|
install: dist/PEinjector.7z installer/install.py
|
||||||
|
ifeq ($(OS), Windows_NT)
|
||||||
python installer/install.py
|
python installer/install.py
|
||||||
|
else
|
||||||
|
sudo python installer/install.py
|
||||||
|
endif
|
||||||
build: dist/PEinjector.7z
|
build: dist/PEinjector.7z
|
||||||
prepare: env/python.exe
|
prepare: env/python.exe
|
||||||
clean:
|
clean:
|
||||||
|
@ -53,15 +57,16 @@ else
|
||||||
mkdir dist -p
|
mkdir dist -p
|
||||||
endif
|
endif
|
||||||
debug: dist/PEinjector.7z
|
debug: dist/PEinjector.7z
|
||||||
python installer/install.py
|
|
||||||
ifeq ($(OS), Windows_NT)
|
ifeq ($(OS), Windows_NT)
|
||||||
|
python installer/install.py
|
||||||
start_vm.cmd
|
start_vm.cmd
|
||||||
else
|
else
|
||||||
start_vm.sh
|
sudo python installer/install.py
|
||||||
|
sudo start_vm.sh
|
||||||
endif
|
endif
|
||||||
start:
|
start:
|
||||||
ifeq ($(OS), Windows_NT)
|
ifeq ($(OS), Windows_NT)
|
||||||
start_vm.cmd
|
start_vm.cmd
|
||||||
else
|
else
|
||||||
start_vm.sh
|
sudo start_vm.sh
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue