source: _old/app/Makefile @ 1e121f4

Last change on this file since 1e121f4 was 1e121f4, checked in by Adam Kędziora <s301614@…>, 14 years ago

Replacing old implementation with working implementation

  • Property mode set to 100644
File size: 4.2 KB
Line 
1# main makefile
2
3# ******************************
4# * Local variables
5# ******************************
6CUR_DIR=$(shell pwd)
7SRC_DIR=$(CUR_DIR)/src
8OUTPUT_DIR=$(CUR_DIR)/output
9
10# ******************************
11# * Global for make globals
12# ******************************
13
14export UTT_DIR=${OUTPUT_DIR}
15
16# executables
17export UTT_BIN_DIR=${UTT_DIR}/bin
18# configuration files
19export UTT_CONF_DIR=${UTT_DIR}/etc/utt
20# language/encoding specific stuff
21# any extra files for some programs, like: weights.kor, cats.dgc, gram.dgc, etc.
22export UTT_LANG_DIR=${UTT_DIR}/share/utt
23# some files like ser.l.template, terms.m4
24export UTT_LIB_DIR=${UTT_DIR}/lib/utt
25# stuff like documantation (man, info), docs: FAQ, COPYRIGHT, NEWS, README
26export UTT_SHARE_DIR=${UTT_DIR}/share
27
28##############################
29
30# list of components to be included in the distribution
31COMPONENTS = compiledic cor dgp fla gph grp gue kon kor kot lem mar rm12 rs12 sen-l sen-nl ser tags tok.l unfla
32
33##############################
34
35# ------------------------------------------------------------------
36# sekcja kompilacji (kompiluje i wgrywa do OUTPUT_DIR)
37# ------------------------------------------------------------------
38.PHONY: compile
39compile: dirs components
40        @echo "Make compiled successfully!"
41
42.PHONY: dirs
43dirs:
44        if [ -d ${UTT_DIR} ]; then rm -r ${UTT_DIR}; fi
45        mkdir -p ${UTT_DIR}
46        mkdir -p ${UTT_BIN_DIR}
47        mkdir -p ${UTT_CONF_DIR}
48        mkdir -p ${UTT_LANG_DIR}
49        mkdir -p ${UTT_LIB_DIR}
50        mkdir -p ${UTT_SHARE_DIR}/utt
51        mkdir -p ${UTT_SHARE_DIR}/doc/utt
52        mkdir -p ${UTT_SHARE_DIR}/info
53        mkdir -p ${UTT_SHARE_DIR}/man/man3
54
55.PHONY: components
56components:             
57        @for cmp in $(COMPONENTS); do\
58                cd $(SRC_DIR)/$$cmp && make && make copy; cd $(CUR_DIR); \
59        done
60
61
62# ------------------------------------------------------------------
63# sekcja sprzatania (kasuje binaria z katalogow SRC/COMPONENTS)
64# ------------------------------------------------------------------
65.PHONY: clean
66clean: clean_components clean_doc clean_dist
67        @echo "All files cleaned successfully!"
68
69.PHONY: clean_components
70clean_components:
71        @for cmp in $(COMPONENTS); do \
72                cd $(SRC_DIR)/$$cmp && make clean ; cd $(CUR_DIR); \
73        done
74        cd $(SRC_DIR)/lib && make clean; cd $(CUR_DIR);
75
76.PHONY: clean_doc
77clean_doc:
78        cd $(CUR_DIR)/doc && make clean; cd $(CUR_DIR)
79
80.PHONY: clean_dist
81clean_dist:
82        rm -rf ${UTT_DIR}
83
84# ------------------------------------------------------------------
85# sekcja przygotowania paczki (programow wraz z dodatkowymi plikami)
86# ------------------------------------------------------------------
87.PHONY: build
88build: compile build_conf build_share build_lib build_doc
89        @echo "All files builded successfully!"
90
91.PHONY: build_conf
92build_conf:
93        cp $(CUR_DIR)/conf/*.conf $(UTT_CONF_DIR)/
94
95.PHONY: build_lib
96build_lib:
97        cp $(CUR_DIR)/lib/* $(UTT_LIB_DIR)/
98
99.PHONY: build_doc
100build_doc:
101        cd $(CUR_DIR)/doc && make && make copy; cd $(CUR_DIR)
102
103.PHONY: build_share
104build_share:
105        cp $(CUR_DIR)/share/* $(UTT_LANG_DIR)/
106
107
108# ------------------------------------------------------------------
109# sekcja tworzenia dystrybucji (tarballa, rpm, deb)
110# ------------------------------------------------------------------
111.PHONY: distribute
112distribute: build dist_tarball dist_rpm
113        @echo "All distributions created successfully!"
114
115.PHONY: dist_tarball
116dist_tarball: build
117        cd $(CUR_DIR)/dist && make tarball; cd $(CUR_DIR)
118
119.PHONY: dist_rpm
120dist_rpm: build
121        cd $(CUR_DIR)/dist && make rpm; cd $(CUR_DIR)
122
123.PHONY: dist_deb
124dist_deb: build
125        cd $(CUR_DIR)/dist && make deb; cd $(CUR_DIR)
126
127
128# ------------------------------------------------------------------
129# sekcja testowania (kasuje tarballa z TARBALL_TEST_DIR,
130# kompiluje, robi paczke,
131# tworzy tarballa i wgrywa go do TARBALL_TEST_DIR)
132# ------------------------------------------------------------------
133#install: all
134#       cd ${UTT_DIR} && make install; cd ${CUR_DIR}
135
136#uninstall:
137#       cd ${UTT_DIR} && make uninstall; cd ${DIR}
138
139#reinstall:
140#       cd ${UTT_DIR} && make reinstall; cd ${DIR}
141
142#dist: all
143#       tar -czvf $(UTT_DIST_NAME).tgz $(UTT_DIR)
144
145#clean_dist:
146#       if [ -d $(UTT_DIST_DIR) ]; then rm -r $(UTT_DIST_DIR); else true; fi
147#       if [ -f $(UTT_DIST_FILE).tar.bz2 ]; then rm $(UTT_DIST_FILE).tar.bz2; else true; fi
148#       if [ -f $(UTT_DIST_PMDB_FILE).tar.bz2 ]; then rm $(UTT_DIST_PMDB_FILE).tar.bz2; else true; fi
Note: See TracBrowser for help on using the repository browser.