File: Makefile.msvc

package info (click to toggle)
cl-uffi 1.6.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 752 kB
  • ctags: 389
  • sloc: lisp: 3,515; xml: 2,978; makefile: 251; ansic: 169; sh: 82
file content (28 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# FILE IDENTIFICATION
# 
#  Name:         Makefile.msvc
#  Purpose:      Makefile for the CLSQL UFFI helper package (MSVC)
#  Programer:    Kevin M. Rosenberg
#  Date Started: Mar 2002
#
#  CVS Id:   $Id: Makefile.msvc,v 1.1 2002/03/23 10:26:03 kevin Exp $
#
# This file, part of CLSQL, is Copyright (c) 2002-2005 by Kevin M. Rosenberg
#

BASE=c-test-fns

# Nothing to configure beyond here

SRC=$(BASE).c
OBJ=$(BASE).obj
DLL=$(BASE).dll

$(DLL): $(SRC)
	cl /MD /LD -D_MT /DWIN32=1 $(SRC)
        del $(OBJ) $(BASE).exp

clean:
        del /q $(DLL)