X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2FMakefile.nt;h=5ead782c8d47a4147841ca2d7b1bfe7e399f117c;hb=32d6fa3d533e70745f67e44dfc07d66769d975d6;hp=3358b6c2d3b5b9e6c56eec29c7efdf57813b6cee;hpb=8030542e9c1262d11845ef19c8b6f0b441d9baa4;p=uffi.git diff --git a/tests/Makefile.nt b/tests/Makefile.nt index 3358b6c..5ead782 100644 --- a/tests/Makefile.nt +++ b/tests/Makefile.nt @@ -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) +