From 2ac8c217068f8d2a1255df83c741370f0add8a4d Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Fri, 22 Mar 2002 19:14:30 +0000 Subject: [PATCH] r1615: *** empty log message *** --- examples/Makefile.nt | 32 ++++++++++++++++++++++++++++---- tests/Makefile.nt | 32 ++++++++++++++++++++++++++++---- 2 files changed, 56 insertions(+), 8 deletions(-) diff --git a/examples/Makefile.nt b/examples/Makefile.nt index defa2c6..5ead782 100644 --- a/examples/Makefile.nt +++ b/examples/Makefile.nt @@ -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) diff --git a/tests/Makefile.nt b/tests/Makefile.nt index defa2c6..5ead782 100644 --- a/tests/Makefile.nt +++ b/tests/Makefile.nt @@ -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) -- 2.34.1