021be37cc83103b9ece10f31a0e4fb2598c6329d
[clsql.git] / uffi / Makefile.msvc
1 # -*- Mode: Makefile -*-
2 ###########################################################################
3 # FILE IDENTIFICATION
4
5 #  Name:    Makefile.msvc
6 #  Purpose: Makefile for the CLSQL UFFI helper package (MSVC)
7 #  Author:  Kevin M. Rosenberg
8 #  Created: Mar 2002
9 #
10 #  CVS Id:   $Id: Makefile.msvc,v 1.1 2002/09/18 07:50:01 kevin Exp $
11 #
12 # This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg
13 #
14 # CLSQL users are granted the rights to distribute and use this software
15 # as governed by the terms of the Lisp Lesser GNU Public License
16 # (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ###########################################################################
18
19
20 BASE=clsql_uffi
21
22 # Nothing to configure beyond here
23
24 SRC=$(BASE).c
25 OBJ=$(BASE).obj
26 DLL=$(BASE).dll
27
28 $(DLL): $(SRC) 
29         cl /MD /LD -D_MT /DWIN32=1 /D__LCC__=1 $(SRC)
30         del $(OBJ) $(BASE).exp
31
32 clean:
33         del /q $(DLL) $(BASE).LIB
34
35