From: Kevin M. Rosenberg Date: Sat, 23 Mar 2002 10:26:03 +0000 (+0000) Subject: r1633: *** empty log message *** X-Git-Tag: v1.6.1~546 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;ds=sidebyside;h=cde97f93610fed90732887934ca16906fcf91dd5;p=uffi.git r1633: *** empty log message *** --- diff --git a/examples/Makefile.msvc b/examples/Makefile.msvc new file mode 100644 index 0000000..5e061d6 --- /dev/null +++ b/examples/Makefile.msvc @@ -0,0 +1,31 @@ +# 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 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 + +$(DLL): $(SRC) + cl /MD /LD -D_MT /DWIN32=1 $(SRC) + del $(OBJ) $(BASE).exp + +clean: + del /q $(DLL) + + diff --git a/examples/Makefile.nt b/examples/Makefile.nt deleted file mode 100644 index 5ead782..0000000 --- a/examples/Makefile.nt +++ /dev/null @@ -1,32 +0,0 @@ -# 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 $(OBJ) $(DLL) $(LIBFILE) - - diff --git a/tests/Makefile.msvc b/tests/Makefile.msvc new file mode 100644 index 0000000..5e061d6 --- /dev/null +++ b/tests/Makefile.msvc @@ -0,0 +1,31 @@ +# 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 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 + +$(DLL): $(SRC) + cl /MD /LD -D_MT /DWIN32=1 $(SRC) + del $(OBJ) $(BASE).exp + +clean: + del /q $(DLL) + + diff --git a/tests/Makefile.nt b/tests/Makefile.nt deleted file mode 100644 index 5ead782..0000000 --- a/tests/Makefile.nt +++ /dev/null @@ -1,32 +0,0 @@ -# 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 $(OBJ) $(DLL) $(LIBFILE) - -