mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
15 lines
178 B
Makefile
15 lines
178 B
Makefile
all: build
|
|
|
|
build:
|
|
python setup.py build
|
|
|
|
install:
|
|
python setup.py install
|
|
|
|
dist:
|
|
python setup.py sdist
|
|
|
|
clean:
|
|
rm -f `find . -name "*.pyc" -o -name "*~"`
|
|
rm -rf dist build
|