diff options
author | Ralph Amissah <ralph@amissah.com> | 2016-10-01 14:12:13 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:13 -0400 |
commit | ba1712e77b31704fd9ba16d14e15518e7a7dd104 (patch) | |
tree | 1a0d3233fb611b68dbf43e098a41a0d9378e9ace /makefile | |
parent | update sdlang, start looking to using dub remote dependencies (diff) |
0.7.0 using dub remote dependencies (local src related to sdlang removed)
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -159,20 +159,22 @@ skel: init: skel +clean: + rm -rf $(PRG_SRCDIR); \ + rm -rf $(PRG_DOCDIR); + clean_bin: rm $(PRG_BINDIR)/* clean_src: - rm -f $(PRG_SRCDIR)/*; \ - rm -rf $(PRG_SRCDIR)/$(PRG_NAME); \ + rm -rf $(PRG_SRCDIR); clean_docs: rm -rf $(PRG_DOCDIR) expunge: rm -f dub.selections.json; \ - rm -f $(PRG_SRCDIR)/*; \ - rm -rf $(PRG_SRCDIR)/$(PRG_NAME); \ + rm -rf $(PRG_SRCDIR); \ rm -rf $(PRG_BINDIR); \ rm -rf $(PRG_DOCDIR); |