forked from github/kensanata.oddmuse
The Mac subdirectory and all the instructions of how to build and install Oddmuse on a Mac using the OSX tools have been deleted. The Slack subdirectory and all the instructions of how to build and install Oddmuse on Slackware have been deleted. The contrib/simple-install subdirectory and all the instructions on how to quickly and easily install Oddmuse using Creole have been deleted.
49 lines
1.9 KiB
Makefile
49 lines
1.9 KiB
Makefile
# In order to build a copy of Oddmuse with all the version numbers, use:
|
|
# make build. This creates modified copies of the files in the build
|
|
# subdirectory.
|
|
|
|
VERSION_NO=$(shell git describe --tags)
|
|
TRANSLATIONS=$(wildcard modules/translations/[a-z]*.pl$)
|
|
MODULES=$(wildcard modules/*.pl)
|
|
BUILD=build/wiki.pl $(foreach file, $(notdir $(MODULES)) $(notdir $(TRANSLATIONS)), build/$(file))
|
|
|
|
# PREPARE/BUILD: this creates copies of wiki.pl and all the modules
|
|
# and translations in the build subdirectory. These copies all contain
|
|
# a reference to the revision they were created from (git describe
|
|
# --tags).
|
|
|
|
prepare: build $(BUILD)
|
|
|
|
build:
|
|
mkdir -p build
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
build/wiki.pl: wiki.pl
|
|
perl -lne "s/(\\\$$q->a\({-href=>'http:\/\/www.oddmuse.org\/'}, 'Oddmuse'\))/\\\$$q->a({-href=>'http:\/\/git.savannah.gnu.org\/cgit\/oddmuse.git\/tag\/?id=$(VERSION_NO)'}, 'wiki.pl') . ' ($(VERSION_NO)), see ' . \$$1/; print" < $< > $@
|
|
|
|
build/%-utf8.pl: modules/translations/%-utf8.pl
|
|
perl -lne "s/(AddModuleDescription\('[^']+', '[^']+')\)/\$$1, 'translations\/', '$(VERSION_NO)')/; print" < $< > $@
|
|
|
|
build/national-%.pl: modules/translations/national-%.pl
|
|
perl -lne "s/(AddModuleDescription\('[^']+', '[^']+')\)/\$$1, 'translations\/', '$(VERSION_NO)')/; print" < $< > $@
|
|
|
|
build/month-names-%.pl: modules/translations/month-names-%.pl
|
|
perl -lne "s/(AddModuleDescription\('[^']+', '[^']+')\)/\$$1, 'translations\/', '$(VERSION_NO)')/; print" < $< > $@
|
|
|
|
# from: http://git.savannah.gnu.org/cgit/oddmuse.git/tree/modules/namespaces.pl
|
|
# to: http://git.savannah.gnu.org/cgit/oddmuse.git/tree/modules/namespaces.pl?id=2.1-11-gd4f1e27
|
|
|
|
build/%.pl: modules/%.pl
|
|
perl -lne "s/(AddModuleDescription\('[^']+', '[^']+')\)/\$$1, undef, '$(VERSION_NO)')/; print" < $< > $@
|
|
|
|
translations: $(TRANSLATIONS)
|
|
for f in $^; do \
|
|
echo updating $$f...; \
|
|
perl oddtrans -l $$f wiki.pl $(MODULES) > $$f-new && mv $$f-new $$f; \
|
|
done
|
|
|
|
test:
|
|
prove t
|