Skip to content

Commit

Permalink
add option "make training-uninstall"
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenop authored and stweil committed Nov 22, 2016
1 parent ac3b40d commit b0abed7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ training/wordlist2dawg
*.patch

# ignore compilation files
build/*
*/.deps/*
*/.libs/*
*.lo
Expand Down
3 changes: 3 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ ACLOCAL_AMFLAGS = -I m4
if ENABLE_TRAINING
TRAINING_SUBDIR = training
training:
$(MAKE)
@cd "$(top_builddir)/training" && $(MAKE)
training-install:
@cd "$(top_builddir)/training" && $(MAKE) install
training-uninstall:
@cd "$(top_builddir)/training" && $(MAKE) uninstall
clean-local:
@cd "$(top_builddir)/training" && $(MAKE) clean
else
Expand Down

0 comments on commit b0abed7

Please sign in to comment.