X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-uffi%2FMakefile.msvc;fp=clsql-uffi%2FMakefile.msvc;h=0000000000000000000000000000000000000000;hb=2434b58ef00a7f6c5915c86b25a891c4adda79e4;hp=49e52d2574360f73601f8a1a53ec6335582b9a8a;hpb=c747f26daf759c260968928d125b2750894d4217;p=clsql.git diff --git a/clsql-uffi/Makefile.msvc b/clsql-uffi/Makefile.msvc deleted file mode 100644 index 49e52d2..0000000 --- a/clsql-uffi/Makefile.msvc +++ /dev/null @@ -1,35 +0,0 @@ -# -*- Mode: Makefile -*- -########################################################################### -# 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/08/01 03:06:27 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=clsql-uffi - -# Nothing to configure beyond here - -SRC=$(BASE).c -OBJ=$(BASE).obj -DLL=$(BASE).dll - -$(DLL): $(SRC) - cl /MD /LD -D_MT /DWIN32=1 /D__LCC__=1 $(SRC) - del $(OBJ) $(BASE).exp - -clean: - del /q $(DLL) - -