This repository has been archived by the owner on Jan 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.am
61 lines (48 loc) · 2.11 KB
/
Makefile.am
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
52
53
54
55
56
57
58
59
60
61
## Process this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
src \
database \
man \
misc \
upgrades
EXTRA_DIST = \
bin \
build \
frontends \
include \
conf
## "dist-hook" run after the distribution directory is filled, but before the actual tar (or shar) file is created.
dist-hook:
@zabbix_revision=`svn info|grep "Last Changed Rev"|awk '{print $$4;}'`; \
cat $(top_distdir)/include/version.h|sed "s/{ZABBIX_REVISION}/$$zabbix_revision/g" > $(top_distdir)/include/version.h.new; \
mv $(top_distdir)/include/version.h.new $(top_distdir)/include/version.h; \
cat $(top_distdir)/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java|sed "s/{ZABBIX_REVISION}/$$zabbix_revision/g" > \
$(top_distdir)/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java.new; \
mv $(top_distdir)/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java.new \
$(top_distdir)/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java
rm -rf `find $(top_distdir) -name ".svn"`
rm -f $(top_distdir)/create/data/data_test.sql
rm -f $(top_distdir)/include/config.h
rm -f $(top_distdir)/frontends/php/conf/zabbix.conf.php
rm -rf $(top_distdir)/frontends/php/tests
dbschema_ibm_db2:
create/bin/gen_data.pl ibm_db2 > database/ibm_db2/data.sql
create/bin/gen_schema.pl ibm_db2 > database/ibm_db2/schema.sql
dbschema_mysql:
create/bin/gen_data.pl mysql > database/mysql/data.sql
create/bin/gen_schema.pl mysql > database/mysql/schema.sql
dbschema_oracle:
create/bin/gen_data.pl oracle > database/oracle/data.sql
create/bin/gen_schema.pl oracle > database/oracle/schema.sql
dbschema_postgresql:
create/bin/gen_data.pl postgresql > database/postgresql/data.sql
create/bin/gen_schema.pl postgresql > database/postgresql/schema.sql
dbschema_sqlite3:
create/bin/gen_data.pl sqlite3 > database/sqlite3/data.sql
create/bin/gen_schema.pl sqlite3 > database/sqlite3/schema.sql
dbschema_c:
create/bin/gen_schema.pl c > src/libs/zbxdbhigh/dbschema.c
dbschema: dbschema_ibm_db2 dbschema_mysql dbschema_oracle dbschema_postgresql dbschema_sqlite3 dbschema_c
gettext:
frontends/php/locale/make_mo.sh