69 lines
2.1 KiB
Makefile
69 lines
2.1 KiB
Makefile
PACKAGE = Mailer
|
|
VERSION = 0.0.0
|
|
SUBDIRS = data include po src
|
|
RM = rm -f
|
|
LN = ln -f
|
|
TAR = tar -czvf
|
|
|
|
|
|
all: subdirs
|
|
|
|
subdirs:
|
|
@for i in $(SUBDIRS); do (cd $$i && $(MAKE)) || exit; done
|
|
|
|
clean:
|
|
@for i in $(SUBDIRS); do (cd $$i && $(MAKE) clean) || exit; done
|
|
|
|
distclean:
|
|
@for i in $(SUBDIRS); do (cd $$i && $(MAKE) distclean) || exit; done
|
|
|
|
dist:
|
|
$(RM) -r -- $(PACKAGE)-$(VERSION)
|
|
$(LN) -s -- . $(PACKAGE)-$(VERSION)
|
|
@$(TAR) $(PACKAGE)-$(VERSION).tar.gz -- \
|
|
$(PACKAGE)-$(VERSION)/data/Makefile \
|
|
$(PACKAGE)-$(VERSION)/data/mailer.desktop \
|
|
$(PACKAGE)-$(VERSION)/data/project.conf \
|
|
$(PACKAGE)-$(VERSION)/include/Mailer.h \
|
|
$(PACKAGE)-$(VERSION)/include/Makefile \
|
|
$(PACKAGE)-$(VERSION)/include/project.conf \
|
|
$(PACKAGE)-$(VERSION)/po/Makefile \
|
|
$(PACKAGE)-$(VERSION)/po/gettext.sh \
|
|
$(PACKAGE)-$(VERSION)/po/POTFILES \
|
|
$(PACKAGE)-$(VERSION)/po/fr.po \
|
|
$(PACKAGE)-$(VERSION)/po/project.conf \
|
|
$(PACKAGE)-$(VERSION)/src/account.c \
|
|
$(PACKAGE)-$(VERSION)/src/callbacks.c \
|
|
$(PACKAGE)-$(VERSION)/src/compose.c \
|
|
$(PACKAGE)-$(VERSION)/src/mailer.c \
|
|
$(PACKAGE)-$(VERSION)/src/main.c \
|
|
$(PACKAGE)-$(VERSION)/src/Makefile \
|
|
$(PACKAGE)-$(VERSION)/src/account.h \
|
|
$(PACKAGE)-$(VERSION)/src/callbacks.h \
|
|
$(PACKAGE)-$(VERSION)/src/common.c \
|
|
$(PACKAGE)-$(VERSION)/src/compose.h \
|
|
$(PACKAGE)-$(VERSION)/src/mailer.h \
|
|
$(PACKAGE)-$(VERSION)/src/gtkassistant.c \
|
|
$(PACKAGE)-$(VERSION)/src/project.conf \
|
|
$(PACKAGE)-$(VERSION)/src/account/imap4.c \
|
|
$(PACKAGE)-$(VERSION)/src/account/mbox.c \
|
|
$(PACKAGE)-$(VERSION)/src/account/pop3.c \
|
|
$(PACKAGE)-$(VERSION)/src/account/nntp.c \
|
|
$(PACKAGE)-$(VERSION)/src/account/rss.c \
|
|
$(PACKAGE)-$(VERSION)/src/account/Makefile \
|
|
$(PACKAGE)-$(VERSION)/src/account/project.conf \
|
|
$(PACKAGE)-$(VERSION)/Makefile \
|
|
$(PACKAGE)-$(VERSION)/COPYING \
|
|
$(PACKAGE)-$(VERSION)/config.h \
|
|
$(PACKAGE)-$(VERSION)/config.sh \
|
|
$(PACKAGE)-$(VERSION)/project.conf
|
|
$(RM) -- $(PACKAGE)-$(VERSION)
|
|
|
|
install: all
|
|
@for i in $(SUBDIRS); do (cd $$i && $(MAKE) install) || exit; done
|
|
|
|
uninstall:
|
|
@for i in $(SUBDIRS); do (cd $$i && $(MAKE) uninstall) || exit; done
|
|
|
|
.PHONY: all subdirs clean distclean dist install uninstall
|