-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
36 lines (28 loc) · 973 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## Process this file with automake to produce Makefile.in
## Copyright: Sámediggi/Divvun/UiT
## Licence: GPL v3+
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = . src tools docs test
pkgconfigdir = $(prefix)/share/pkgconfig
pkgconfig_DATA = giella-$(GTLANG).pc
configure: banner
.PHONY: banner test
banner:
@echo
@echo "*** Compiling $(GLANG) - $(GLANGUAGE). ***"
@echo
# On some systems it will try to run 'make test', and claim
# 'nothing to be done for test'. By forwarding test to check we work around it.
test: check
update:
git subtree pull --prefix src/fst/morphology/ext-Apertium-nno https://github.com/apertium/apertium-nno.git master --squash
# recurse all make devs just
dev:
-$(MAKE) dev -C tools/analysers
-$(MAKE) dev -C tools/tokenisers
-$(MAKE) dev -C tools/grammarcheckers
-$(MAKE) dev -C tools/tts
# Remove html tables created by some of the developer tools:
clean-local:
rm -f *.html
include $(top_srcdir)/../giella-core/am-shared/devtest-include.am