Remove CVS $Id$ keyword
[clsql.git] / examples / sqlite3 / init-func / Makefile
1 #!/usr/bin/make
2 ##########################################################################
3 # FILE IDENTIFICATION
4 #
5 #  Name:         Makefile
6 #  Purpose:      Makefile for SQLite 3 init function example.
7 #  Programer:    Aurelio Bignoli
8 #  Date Started: Oct 2004
9 #
10 # This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli
11 #
12 # CLSQL users are granted the rights to distribute and use this software
13 # as governed by the terms of the Lisp Lesser GNU Public License
14 # (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ##########################################################################
16
17
18 sqlite3-utils.so:       iso-8859-15-coll.c Makefile
19         gcc -c -fPIC iso-8859-15-coll.c -o iso-8859-15-coll.o
20         gcc -shared iso-8859-15-coll.o -o sqlite3-utils.so -l sqlite3
21