fix bug of two asd files copied
[clsql/s11.git] / uffi / Makefile.msvc
blob021be37cc83103b9ece10f31a0e4fb2598c6329d
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
10 #  CVS Id:   $Id: Makefile.msvc,v 1.1 2002/09/18 07:50:01 kevin Exp $
12 # This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg
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 ###########################################################################
20 BASE=clsql_uffi
22 # Nothing to configure beyond here
24 SRC=$(BASE).c
25 OBJ=$(BASE).obj
26 DLL=$(BASE).dll
28 $(DLL): $(SRC) 
29         cl /MD /LD -D_MT /DWIN32=1 /D__LCC__=1 $(SRC)
30         del $(OBJ) $(BASE).exp
32 clean:
33         del /q $(DLL) $(BASE).LIB