ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/db/Makefile
Revision: 1.1
Committed: Wed Mar 14 22:38:49 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION, HEAD
Branch point for: SERVER_PIRCBOT
Error occurred while calculating annotation data.
Log Message:
Makefile for creating or dropping the mySQL tables.

File Contents

# Content
1 # Makefile for the server database
2 # $Id$
3
4 all:
5 @echo "Please try on of the following;"
6 @echo " make create - creates the ipacket table"
7 @echo " make drop - drops the ipacket table"
8
9 create:
10 mysql -u co600_10 -p co600_10_db < ipacket.sql
11
12 drop:
13 mysql -u co600_10 -p co600_10_db < drop.sql