r1615: *** empty log message ***
[uffi.git] / tests / Makefile.nt
1 # FILE IDENTIFICATION
2
3 #  Name:         Makefile
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.nt,v 1.4 2002/03/22 19:14:30 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 LIBFILE=$(BASE).lib
24
25 $(DLL): $(SRC)
26         cl /MD /LD -D_MT /DWIN32=1 $(SRC)
27         del $(OBJ) $(BASE).exp
28
29 clean:
30         del /q $(OBJ) $(DLL) $(LIBFILE)
31
32