浏览代码

Add a distclean target for Make

This runs a `git clean -fxd` to revert to a pristine Git clone.
pull/30/head
Paul J. Davis 12 年前
提交者 Dave Cottlehuber
父节点
当前提交
fb7b33580b
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      Makefile

+ 2
- 0
Makefile 查看文件

@ -8,6 +8,8 @@ clean:
rm -rf .eunit
rm -f test/*.beam
distclean: clean
git clean -fxd
depends:
@if test ! -d ./deps; then \

正在加载...
取消
保存