r1615: *** empty log message ***
[uffi.git] / tests / Makefile.nt
index 3358b6c2d3b5b9e6c56eec29c7efdf57813b6cee..5ead782c8d47a4147841ca2d7b1bfe7e399f117c 100644 (file)
@@ -1,7 +1,32 @@
-c-test-fns.dll: c-test-fns.c
-       cl /LD /DWIN32=1 c-test-fns.c
-       del c-test-fns.obj
+# FILE IDENTIFICATION
+# 
+#  Name:         Makefile
+#  Purpose:      Makefile for the CLSQL UFFI helper package (MSVC)
+#  Programer:    Kevin M. Rosenberg
+#  Date Started: Mar 2002
+#
+#  CVS Id:   $Id: Makefile.nt,v 1.4 2002/03/22 19:14:30 kevin Exp $
+#
+# This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
+#
+# CLSQL users are granted the rights to distribute and use this software
+# as governed by the terms of the Lisp Lesser GNU Public License
+# (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+
+BASE=c-test-fns
+
+# Nothing to configure beyond here
+
+SRC=$(BASE).c
+OBJ=$(BASE).obj
+DLL=$(BASE).dll
+LIBFILE=$(BASE).lib
+
+$(DLL): $(SRC)
+       cl /MD /LD -D_MT /DWIN32=1 $(SRC)
+        del $(OBJ) $(BASE).exp
 
 clean:
-       del /q c-test-fns.obj c-test-fns.dll
+        del /q $(OBJ) $(DLL) $(LIBFILE)
+