Automated commit for debian release 6.7.2-1
[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 # This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
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 BASE=clsql_uffi
19
20 # Nothing to configure beyond here
21
22 SRC=$(BASE).c
23 OBJ=$(BASE).obj
24 DLL=$(BASE).dll
25
26 $(DLL): $(SRC) 
27         cl /MD /LD -D_MT /DWIN32=1 /D__LCC__=1 $(SRC)
28         del $(OBJ) $(BASE).exp
29
30 clean:
31         del /q $(DLL) $(BASE).LIB