geary/Makefile.in

49 lines
785 B
Makefile
Raw Normal View History

# Makefile.in
#
# Copyright 2012 Yorba Foundation
BUILD_DIR := build
2012-07-12 19:29:58 -07:00
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
install:
@$(MAKE) -C $(BUILD_DIR) $@
.PHONY: uninstall
uninstall:
@$(MAKE) -C $(BUILD_DIR) $@
@$(MAKE) -C $(BUILD_DIR) post-uninstall
.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
2012-05-02 15:34:29 -07:00
.PHONY: dist
dist:
@$(MAKE) -C $(BUILD_DIR) dist
2012-05-02 16:01:41 -07:00
@cp build/*.xz .
2012-05-02 15:34:29 -07:00
.PHONY: ubuntu
ubuntu:
@$(MAKE) -C $(BUILD_DIR) ubuntu