File: Makefile

package info (click to toggle)
mozzemberek 0.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 168 kB
  • ctags: 111
  • sloc: cpp: 686; makefile: 111
file content (51 lines) | stat: -rw-r--r-- 1,803 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright (C) 2008 Harri Pitkänen <hatapitk@iki.fi>
# Copyright (C) 2008 Rail Aliev <rail@i-rs.ru>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

include mozzemberek.config
.PHONY: clean dist-gzip all xpi extension-files install-unpacked

all: xpi

xpi:
	$(MAKE) -e -C src xpi

extension-files:
	$(MAKE) -e -C src extension-files

install-unpacked:
	$(MAKE) -e -C src install-unpacked

# Rules for creating the source distribution
SRCDIST=README INSTALL ChangeLog COPYING TODO AUTHORS \
        Makefile mozzemberek.config $(shell find src -type f)

dist: mozzemberek-$(MOZZEMBEREK_VERSION).tar.gz

mozzemberek-$(MOZZEMBEREK_VERSION).tar.gz: $(patsubst %,mozzemberek-$(MOZZEMBEREK_VERSION)/%, \
                                       $(sort $(SRCDIST)))
	tar c --exclude=.svn --group 0 --owner 0 mozzemberek-$(MOZZEMBEREK_VERSION) | gzip -9 > $@

$(patsubst %,mozzemberek-$(MOZZEMBEREK_VERSION)/%, $(sort $(SRCDIST))): \
           mozzemberek-$(MOZZEMBEREK_VERSION)/%: %
	install --mode=644 -D $^ $@


# Clean rules
clean:
	rm -rf mozzemberek-$(MOZZEMBEREK_VERSION)
	rm -f mozzemberek-$(MOZZEMBEREK_VERSION).tar.gz
	$(MAKE) -C src clean