Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8740 - (hide annotations) (download)
Wed Feb 17 12:07:37 2016 UTC (8 years, 2 months ago) by niro
File size: 551 byte(s)
-sql db schema version 7, added bootserver to client_locations
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 8740 update_to_database_schema_version_7.sh
10 niro 8535
11     all: $(FILES)
12    
13     install: all
14 niro 8546 $(INSTALL) -d $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/scripts/sql-schema/include
15     $(INSTALL) -m0644 $(FILES) $(DESTDIR)/$(ALX_WEB_INSTALL_DIR)/scripts/sql-schema/include
16 niro 8535
17     clean:
18    
19     .PHONY: all install clean