r1615: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 22 Mar 2002 19:14:30 +0000 (19:14 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 22 Mar 2002 19:14:30 +0000 (19:14 +0000)
examples/Makefile.nt
tests/Makefile.nt

index defa2c64e3f23c27456efb3c17f4ab782cc69b93..5ead782c8d47a4147841ca2d7b1bfe7e399f117c 100644 (file)
@@ -1,8 +1,32 @@
-c-test-fns.dll: c-test-fns.c
-       cl /MD /LD -D_MT /DWIN32=1 c-test-fns.c
-        del c-test-fns.obj c-test-fns.exp
+# 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 c-test-fns.lib
+        del /q $(OBJ) $(DLL) $(LIBFILE)
 
 
index defa2c64e3f23c27456efb3c17f4ab782cc69b93..5ead782c8d47a4147841ca2d7b1bfe7e399f117c 100644 (file)
@@ -1,8 +1,32 @@
-c-test-fns.dll: c-test-fns.c
-       cl /MD /LD -D_MT /DWIN32=1 c-test-fns.c
-        del c-test-fns.obj c-test-fns.exp
+# 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 c-test-fns.lib
+        del /q $(OBJ) $(DLL) $(LIBFILE)