source: lang/dist/Makefile @ 2f8d6d8

Last change on this file since 2f8d6d8 was ef85bd7, checked in by pawelk <pawelk@…>, 16 years ago

Przygotowalem dystrybucje slownikow w wersji tar.gz.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@17 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 968 bytes
Line 
1
2# some variables
3
4# -----------------------------------------------------------
5# default task should display options
6.PHONY: default
7defaul:
8        @echo "Using: make tarball|rpm|deb"
9
10
11# -----------------------------------------------------------
12# this task will create tar.gz distribution
13.PHONY: tarball
14tarball:
15        cd tarball && make
16
17# -----------------------------------------------------------
18# this task should compile utt (if nesessery) and create rpm version
19.PHONY: rpm
20rpm:
21        @#we build rpm (see spec/README for details)
22        cd spec && make
23
24# -----------------------------------------------------------
25# this task should compile utt (if nesessery) and create deb version
26.PHONY: deb
27deb:
28        @#we build deb (see deb/README for details)
29        cd deb && make
30
31# -----------------------------------------------------------
32# this task should remove compiled files and directories
33.PHONY: clean
34clean:
35        # finally the line below should be uncomment
36        #rm -fr ${UTT_DIST_TMP}
37
Note: See TracBrowser for help on using the repository browser.