소스 검색

Makefile: fix 'clean' and add 'distclean'

* fix 'clean' to remove .eunit (not .test)
* add 'distclean' to also remove deps/
pull/3/head
Tuncer Ayaz 12 년 전
부모
커밋
8e12652aa6
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      Makefile

+ 4
- 1
Makefile 파일 보기

@ -7,7 +7,10 @@ all:
./bootstrap ./bootstrap
clean: clean:
@rm -rf rebar ebin/*.beam inttest/rt.work rt.work .test
@rm -rf rebar ebin/*.beam inttest/rt.work rt.work .eunit
distclean: clean
@rm -rf deps
debug: debug:
@./bootstrap debug @./bootstrap debug

불러오는 중...
취소
저장