We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac3b40d commit b0abed7Copy full SHA for b0abed7
.gitignore
@@ -52,6 +52,7 @@ training/wordlist2dawg
52
*.patch
53
54
# ignore compilation files
55
+build/*
56
*/.deps/*
57
*/.libs/*
58
*.lo
Makefile.am
@@ -4,9 +4,12 @@ ACLOCAL_AMFLAGS = -I m4
4
if ENABLE_TRAINING
5
TRAINING_SUBDIR = training
6
training:
7
+ $(MAKE)
8
@cd "$(top_builddir)/training" && $(MAKE)
9
training-install:
10
@cd "$(top_builddir)/training" && $(MAKE) install
11
+training-uninstall:
12
+ @cd "$(top_builddir)/training" && $(MAKE) uninstall
13
clean-local:
14
@cd "$(top_builddir)/training" && $(MAKE) clean
15
else
0 commit comments