Makefile.am (1320B)
1 # This Makefile.am is in the public domain 2 # Process this file with automake to produce Makefile.in 3 4 SUBDIRS = . 5 6 # English (en) 7 tosendir=$(datadir)/frosix/tos/en 8 9 # English (en) 10 ppendir=$(datadir)/frosix/pp/en 11 12 tosen_DATA = \ 13 tos/en/0.txt \ 14 tos/en/0.pdf \ 15 tos/en/0.epub \ 16 tos/en/0.xml \ 17 tos/en/0.html 18 19 ppen_DATA = \ 20 pp/en/0.txt \ 21 pp/en/0.pdf \ 22 pp/en/0.epub \ 23 pp/en/0.xml \ 24 pp/en/0.html 25 26 pkgdatadir= $(prefix)/share/frosix/ 27 28 EXTRA_DIST = \ 29 $(pkgdata_DATA) \ 30 $(tosen_DATA) \ 31 $(ppen_DATA) \ 32 tos/Makefile \ 33 tos/README \ 34 tos/tos.rst \ 35 tos/conf.py \ 36 tos/locale/de/LC_MESSAGES/tos.po \ 37 pp/Makefile \ 38 pp/README \ 39 pp/pp.rst \ 40 pp/conf.py \ 41 pp/locale/de/LC_MESSAGES/pp.po \ 42 uncrustify.cfg \ 43 uncrustify_precommit \ 44 microhttpd.tag 45 46 pkgdata_DATA = \ 47 provider-list.json 48 49 # Change the set of supported languages here. You should 50 # also update tos'XX'data and EXTRA_DIST accordingly. 51 TOS_LANGUAGES="en de" 52 PP_LANGUAGES="en de" 53 54 # Change the terms-of-service version (Etag) to generate here! 55 # This value should be incremented whenever there is a substantive 56 # change in the original text (but not for the translations). 57 TOS_VERSION=0 58 PP_VERSION=0 59 60 update-tos: 61 VERSION=$(TOS_VERSION) ./update-tos.sh $(TOS_LANGUAGES) 62 update-pp: 63 VERSION=$(PP_VERSION) ./update-pp.sh $(PP_LANGUAGES)