r10614: 2005-07-05 Kevin Rosenberg (kevin@rosenberg.net)
[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 #  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-2005 by Kevin M. Rosenberg
11
12 BASE=c-test-fns
13
14 # Nothing to configure beyond here
15
16 SRC=$(BASE).c
17 OBJ=$(BASE).obj
18 DLL=$(BASE).dll
19
20 $(DLL): $(SRC)
21         cl /MD /LD -D_MT /DWIN32=1 $(SRC)
22         del $(OBJ) $(BASE).exp
23
24 clean:
25         del /q $(DLL)
26
27