5e061d61cda5db345966fb1bbd48a769402d8653
[uffi.git] / tests / Makefile.msvc
1 # FILE IDENTIFICATION
2
3 #  Name:         Makefile.msvc
4 #  Purpose:      Makefile for the CLSQL UFFI helper package (MSVC)
5 #  Programer:    Kevin M. Rosenberg
6 #  Date Started: Mar 2002
7 #
8 #  CVS Id:   $Id: Makefile.msvc,v 1.1 2002/03/23 10:26:03 kevin Exp $
9 #
10 # This file, part of CLSQL, is Copyright (c) 2002 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 BASE=c-test-fns
17
18 # Nothing to configure beyond here
19
20 SRC=$(BASE).c
21 OBJ=$(BASE).obj
22 DLL=$(BASE).dll
23
24 $(DLL): $(SRC)
25         cl /MD /LD -D_MT /DWIN32=1 $(SRC)
26         del $(OBJ) $(BASE).exp
27
28 clean:
29         del /q $(DLL)
30
31