X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-mysql%2FMakefile.msvc;fp=clsql-mysql%2FMakefile.msvc;h=0000000000000000000000000000000000000000;hb=7b296f477e74a6db6e319e6cb6dff16be44e6a60;hp=e8addd0de50ba0b06448ee4416451b335101019d;hpb=b0770ce015dd263398ea13f1df810173574a6752;p=clsql.git diff --git a/clsql-mysql/Makefile.msvc b/clsql-mysql/Makefile.msvc deleted file mode 100644 index e8addd0..0000000 --- a/clsql-mysql/Makefile.msvc +++ /dev/null @@ -1,42 +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:26 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-mysql - -# Set to the directory where you have installed mysql's library -MYSQL_DIR=c:/mysql - -MYSQL_LIB_DIR=$(MYSQL_DIR)/lib/opt -MYSQL_LIB_FILE=$(MYSQL_LIB_DIR)/Libmysql.lib -MYSQL_INCLUDE=$(MYSQL_DIR)/include - -# Nothing to configure beyond here - -SRC=$(BASE).c -OBJ=$(BASE).obj -DLL=$(BASE).dll - -$(DLL): $(SRC) $(MYSQL_LIB_FILE) - cl /MD /LD -D_MT /DWIN32=1 /D__LCC__=1 /I$(MYSQL_INCLUDE) $(SRC) $(MYSQL_LIB_FILE) - del $(OBJ) $(BASE).exp - -clean: - del /q $(DLL) - -