Ajout des fonctions postgres dans routine d'install

This commit is contained in:
Laurent Destailleur 2005-03-06 23:11:47 +00:00
parent 1f244ecb14
commit c0865961df
2 changed files with 1 additions and 0 deletions

View File

@ -106,4 +106,5 @@ pgsql.sql: $(TABLES) data/data.sql Makefile
echo "-- ;" >> pgsql.sql
$(FIND) tables/ -name "*sql" | grep -v "key.sql" | xargs cat | grep -v "^--" | cut -d "-" -f 1 >> pgsql.sql
$(FIND) tables/ -name "*sql" | grep "key.sql" | xargs cat | grep -v "^--" | cut -d "-" -f 1 >> pgsql.sql
$(FIND) functions/ -name "*sql" | xargs cat | grep -v "^--" | cut -d "-" -f 1 >> pgsql.sql
cat data/data.sql | grep -v ^-- >> pgsql.sql