Remove old CVS $Id$ keyword
[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 # This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
9 #
10
11 BASE=c-test-fns
12
13 # Nothing to configure beyond here
14
15 SRC=$(BASE).c
16 OBJ=$(BASE).obj
17 DLL=$(BASE).dll
18
19 $(DLL): $(SRC)
20         cl /MD /LD -D_MT /DWIN32=1 $(SRC)
21         del $(OBJ) $(BASE).exp
22
23 clean:
24         del /q $(DLL)
25
26