summaryrefslogtreecommitdiff
path: root/lib/Make2.mingw32
diff options
Diffstat (limited to 'lib/Make2.mingw32')
-rw-r--r--lib/Make2.mingw3250
1 files changed, 0 insertions, 50 deletions
diff --git a/lib/Make2.mingw32 b/lib/Make2.mingw32
deleted file mode 100644
index 27a2c513..00000000
--- a/lib/Make2.mingw32
+++ /dev/null
@@ -1,50 +0,0 @@
-#$Id: Make2.mingw32 2016/05/15 al $ -*- Makefile -*-
-# Copyright (C) 2001 Albert Davis
-# Author: Albert Davis <[email protected]>
-#
-# This file is part of "Gnucap", the Gnu Circuit Analysis Package
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-# 02110-1301, USA.
-#------------------------------------------------------------------------
-VPATH = .:..
-
-CCC = i586-mingw32msvc-g++
-DLLTOOL = i586-mingw32msvc-dlltool
-TARGET_EXT = .dll
-
-CCFLAGS = \
--DMAKE_DLL \
--O2 -DNDEBUG -I. -I../../include
-
-LIBS =
-
-LDFLAGS = -shared
-
-.SUFFIXES:
-.SUFFIXES: .o .cc
-.cc.o:; $(CCC) $(CCFLAGS) -c $<
-#------------------------------------------------------------------------
-$(TARGET): $(TARGET)$(TARGET_EXT) $(TARGET).a
-#------------------------------------------------------------------------
-$(TARGET)$(TARGET_EXT): $(TARGET_DEPENDS)
- rm -f $@
- $(CCC) $(CCFLAGS) $(OBJS) $(LIBS) $(LDFLAGS) -o $@
-#------------------------------------------------------------------------
-$(TARGET).a: $(TARGET_DEPENDS) $(TARGET)$(TARGET_EXT)
- rm -f $@
- $(DLLTOOL) -l $@ -D $(TARGET)$(TARGET_EXT) $(OBJS) $(LIBS)
-#------------------------------------------------------------
-#------------------------------------------------------------