X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2FMakefile.nt;h=5ead782c8d47a4147841ca2d7b1bfe7e399f117c;hb=32d6fa3d533e70745f67e44dfc07d66769d975d6;hp=defa2c64e3f23c27456efb3c17f4ab782cc69b93;hpb=bdc8d4579c990b175da72a928ccc664641b883ae;p=uffi.git 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)