33 lines
629 B
Makefile
33 lines
629 B
Makefile
SUBDIRS = ac po intl libkcc src manual
|
|
|
|
EXTRA_DIST = \
|
|
ChangeLog.jp \
|
|
INSTALL.jp \
|
|
README.jp \
|
|
TODO.jp \
|
|
sylpheed.spec \
|
|
sylpheed.spec.in \
|
|
autogen.sh \
|
|
sylpheed.png \
|
|
sylpheed.desktop \
|
|
ChangeLog.claws
|
|
|
|
if SYLPHEED_GNOME
|
|
pixmapdir=$(gnomedir)/share/pixmaps
|
|
pixmap_DATA=sylpheed.png
|
|
gnomapdir=$(gnomedir)/share/gnome/apps/Internet
|
|
gnomap_DATA=sylpheed.desktop
|
|
else
|
|
pixmapdir=
|
|
pixmap_DATA=
|
|
gnomapdir=
|
|
gnomap_DATA=
|
|
endif
|
|
|
|
BZIP2_ENV =
|
|
|
|
release: distdir
|
|
-chmod -R a+r $(distdir)
|
|
GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
|
|
BZIP2=$(BZIP2_ENV) $(TAR) chojf $(distdir).tar.bz2 $(distdir)
|
|
-rm -rf $(distdir)
|