Magellan Linux

Contents of /alx-src/branches/alx-web-070/scripts/sql-schema/include/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10653 - (show annotations) (download)
Wed Aug 30 14:47:06 2017 UTC (6 years, 7 months ago) by niro
File size: 764 byte(s)
-fixed missing file
1 include ../../../Makefile.inc
2
3 FILES = schema.sh values.sh version.sh \
4 update_to_database_schema_version_2.sh \
5 update_to_database_schema_version_3.sh \
6 update_to_database_schema_version_4.sh \
7 update_to_database_schema_version_5.sh \
8 update_to_database_schema_version_6.sh \
9 update_to_database_schema_version_7.sh \
10 update_to_database_schema_version_8.sh \
11 update_to_database_schema_version_9.sh \
12 update_to_database_schema_version_10.sh \
13 update_to_database_schema_version_11.sh \
14 update_to_database_schema_version_12.sh
15
16 all: $(FILES)
17
18 install: all
19 $(INSTALL) -d $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/scripts/sql-schema/include
20 $(INSTALL) -m0644 $(FILES) $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/scripts/sql-schema/include
21
22 clean:
23
24 .PHONY: all install clean