Remove old CVS $Id$ keyword
[uffi.git] / examples / 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 BASE=c-test-fns
11
12 # Nothing to configure beyond here
13
14 SRC=$(BASE).c
15 OBJ=$(BASE).obj
16 DLL=$(BASE).dll
17
18 $(DLL): $(SRC)
19         cl /MD /LD -D_MT /DWIN32=1 $(SRC)
20         del $(OBJ) $(BASE).exp
21
22 clean:
23         del /q $(DLL)
24
25