Modifications pour permettre utilisation du Makefile avec cygwin

This commit is contained in:
Laurent Destailleur 2005-02-28 13:21:48 +00:00
parent 4694cc69a0
commit 47c83db117
4 changed files with 15 additions and 30 deletions

View File

@ -57,8 +57,7 @@ show:
&& make show BASE=$(BASE) OPTIONS=$(OPTIONS)
drop:
cd tables \
&& make drop
$(SQL) $(OPTIONS) $(BASE) < drop.sql
table:
cd tables \

View File

@ -1,3 +1,5 @@
# Makefile Options
#####################
- show Affiche la liste des tables

View File

@ -58,8 +58,7 @@ show:
&& make show
drop:
cd tables \
&& make drop
$(SQL) $(OPTIONS) $(BASE) < drop.sql
table:
cd tables \

View File

@ -1,34 +1,19 @@
-- ============================================================================
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
--
-- $Id$
-- $Source$
--
-- ===========================================================================
# Makefile Options
#####################
- show Affiche la liste des tables
- table Crée les tables dans la base de données
- drop Supprime toutes les tables de la base
- drop Supprime toutes les tables et clés de la base
- table Crée les tables et clés dans la base de données
- load Charge les données minimales définies dans data/data.sql
- fulldev Supprime toutes la tables, les crée à nouveau et charges les données de dev
- load Charge les données minimales définit dans data/data.sql
- pgsql.sql Génère un fichier unique sql pour l'installation
- pgsql.sql Génère un fichier sql unique pour l'installation (Contient les
ordres de création des tables + clés et index + données)