source: extensions/AMetaData/JpegMetaData/External/php-gettext/Makefile @ 4686

Last change on this file since 4686 was 4686, checked in by grum, 14 years ago

[Plugin:AMetaData] prepare the directory for a future plugin

  • Property svn:executable set to *
File size: 753 bytes
Line 
1PACKAGE = php-gettext-$(VERSION)
2VERSION = 1.0.9
3
4DIST_FILES = \
5        gettext.php \
6        gettext.inc \
7        streams.php \
8        AUTHORS     \
9        README      \
10        COPYING     \
11        Makefile    \
12        examples/index.php    \
13        examples/pigs_dropin.php    \
14        examples/pigs_fallback.php    \
15        examples/locale/sr_CS/LC_MESSAGES/messages.po \
16        examples/locale/sr_CS/LC_MESSAGES/messages.mo \
17        examples/locale/de_CH/LC_MESSAGES/messages.po \
18        examples/locale/de_CH/LC_MESSAGES/messages.mo \
19        examples/update
20
21dist:
22        if [ -d $(PACKAGE) ]; then \
23            rm -rf $(PACKAGE); \
24        fi; \
25        mkdir $(PACKAGE); \
26        if [ -d $(PACKAGE) ]; then \
27            cp -rp --parents $(DIST_FILES) $(PACKAGE); \
28            tar cvzf $(PACKAGE).tar.gz $(PACKAGE); \
29            rm -rf $(PACKAGE); \
30        fi;
31
32clean:
33        rm -f $(PACKAGE).tar.gz
Note: See TracBrowser for help on using the repository browser.