geary/Makefile.in
Jim Nelson 920f7a5cb4 Generate .pot file: Closes #5462
./configure will autodetect xgettext, and if available, "make pot_file"
will generate the po/geary.pot.

This does *not* include intltool support, so the .pot file only
contains strings from the source files.
2012-08-29 15:30:06 -07:00

43 lines
705 B
Makefile

# Makefile.in
#
# Copyright 2012 Yorba Foundation
BUILD_DIR := build
BINARIES := geary gearyd geary-console geary-mailer
BUILD_BINARIES := $(addprefix $(BUILD_DIR)/,$(BINARIES))
.PHONY: all
all:
@$(MAKE) -C $(BUILD_DIR)
@cp $(BUILD_BINARIES) .
.PHONY: install uninstall
install uninstall:
@$(MAKE) -C $(BUILD_DIR) $@
.PHONY: pot_file
pot_file:
@$(MAKE) -C $(BUILD_DIR) $@
@cp build/src/geary.pot po
.PHONY: clean
clean:
@-$(MAKE) -C $(BUILD_DIR) clean
@-rm -f $(BINARIES)
@-rm -f .stamp
.PHONY: distclean
distclean: clean
@-rm -rf $(BUILD_DIR)
@-rm -f Makefile
.PHONY: dist
dist:
@$(MAKE) -C $(BUILD_DIR) dist
@cp build/*.xz .
.PHONY: ubuntu
ubuntu:
@$(MAKE) -C $(BUILD_DIR) ubuntu