aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-06-16 08:38:14 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-06-16 08:38:14 +0000
commit54b51701c9a4731ff6826960207275f7c5f5585c (patch)
tree8cb569c4044fe903e8f077bb94729787707eb818
parentc33a6ba07c4f3ca65031c4bde4b92c967c590343 (diff)
this special makefile is no longer needed as configure can now handle mingw
#> ./configure --with-extension=dll --host=i586-mingw32msvc --includedir=/path/to/w32-pd/src/ -libdir=/path/to/w32-pd/bin/ svn path=/trunk/externals/iem/iemmatrix/; revision=3182
-rw-r--r--src/Makefile.mingw4linux44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/Makefile.mingw4linux b/src/Makefile.mingw4linux
deleted file mode 100644
index d16cb28..0000000
--- a/src/Makefile.mingw4linux
+++ /dev/null
@@ -1,44 +0,0 @@
-LIBNAME = iemmatrix
-EXT = dll
-
-PDPATH=/tmp/pd
-
-CC = i586-mingw32msvc-gcc
-LD = i586-mingw32msvc-ld
-STRIP = i586-mingw32msvc-strip
-
-DEFS = -DPD
-IFLAGS = -I. -I$(PDPATH)/src
-
-AFLAGS =
-LFLAGS = -export_dynamic -shared
-WFLAGS =
-
-.SUFFIXES: .$(EXT)
-
-CFLAGS = -g -O2 $(DEFS) $(IFLAGS) $(WFLAGS) -mms-bitfields
-
-LIBS = -L$(PDPATH)/bin/ -lpd -lcrtdll -lm
-
-
-include Make.source
-TARGETS = $(SOURCES:.c=.o)
-
-
-all: $(LIBNAME)
- cp $(LIBNAME).$(EXT) ..
-
-$(LIBNAME): $(TARGETS)
- $(LD) $(LFLAGS) *.o $(LIBS) -o $(LIBNAME).$(EXT)
- $(STRIP) --strip-unneeded $(LIBNAME).$(EXT)
-
-clean:
- -rm -f *.$(EXT) *.o
-
-cleaner: clean
- -rm -f *~ _* config.*
-
-source:
- echo "SOURCES = \\"> Make.source
- echo `ls mtx_*.c $(LIBNAME).c` >> Make.source
- echo >> Make.source