Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9464 - (hide annotations) (download)
Thu Apr 6 12:57:07 2017 UTC (7 years, 2 months ago) by niro
File size: 678 byte(s)
-updated schema to version 10
1 niro 8535 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 niro 8740 update_to_database_schema_version_5.sh \
8 niro 8573 update_to_database_schema_version_6.sh \
9 niro 9462 update_to_database_schema_version_7.sh \
10 niro 9463 update_to_database_schema_version_8.sh \
11 niro 9464 update_to_database_schema_version_9.sh \
12     update_to_database_schema_version_10.sh
13 niro 8535
14     all: $(FILES)
15    
16     install: all
17 niro 8546 $(INSTALL) -d $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/scripts/sql-schema/include
18     $(INSTALL) -m0644 $(FILES) $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/scripts/sql-schema/include
19 niro 8535
20     clean:
21    
22     .PHONY: all install clean