Sfoglia il codice sorgente

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 anni fa
parent
commit
8e12652aa6
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. +4
    -1
      Makefile

+ 4
- 1
Makefile Vedi File

@ -7,7 +7,10 @@ all:
./bootstrap
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:
@./bootstrap debug

Caricamento…
Annulla
Salva