summaryrefslogtreecommitdiffstats
path: root/src/Makefile.mingw.old
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-02-20 21:06:07 +0000
committerishmal <ishmal@users.sourceforge.net>2007-02-20 21:06:07 +0000
commit33eb73ce15941eb2162f4c213c19b46726766c5a (patch)
treef84b2671de7feb6a4cfca7baead4770bf76bedeb /src/Makefile.mingw.old
parentImprove null check (diff)
downloadinkscape-33eb73ce15941eb2162f4c213c19b46726766c5a.tar.gz
inkscape-33eb73ce15941eb2162f4c213c19b46726766c5a.zip
remove old *.mingw files
(bzr r2408)
Diffstat (limited to 'src/Makefile.mingw.old')
-rw-r--r--src/Makefile.mingw.old53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/Makefile.mingw.old b/src/Makefile.mingw.old
deleted file mode 100644
index 1483746c8..000000000
--- a/src/Makefile.mingw.old
+++ /dev/null
@@ -1,53 +0,0 @@
-###########################################################################
-# $Id$
-###########################################################################
-# Makefile for building with MinGW
-###########################################################################
-
-include ../Makefile.mingw.common
-
-
-
-#Check for 'generated' files
-all: helper/sp-marshal.h helper/sp-marshal.cpp inkscape_version.h inkscape.exe
-
-helper/sp-marshal.h: helper/sp-marshal.h.mingw
- $(CP) $(subst /,$(S), $<) $(subst /,$(S), $@)
-
-helper/sp-marshal.cpp: helper/sp-marshal.cpp.mingw
- $(CP) $(subst /,$(S), $<) $(subst /,$(S), $@)
-
-inkscape_version.h: inkscape_version.h.mingw
- $(CP) inkscape_version.h.mingw inkscape_version.h
-
-include ./make.ofiles
-include ./make.dep
-
-INC += $(INCLUDEPATH)
-
-OBJ = $(OBJECTS)
-
-RES=inkres.o
-
-inkscape.exe: libinkscape.a main.o winmain.o $(RES)
- $(CXX) -o inkscape.exe main.o winmain.o $(RES) libinkscape.a $(LIBS)
-# strip inkscape.exe
-
-inkview.exe: libinkscape.a inkview.o $(RES)
- $(CXX) -o inkview.exe inkview.o $(RES) libinkscape.a $(LIBS)
- strip inkview.exe
-
-inkres.o: inkscape.rc
- $(WINDRES) inkscape.rc $(RES)
-
-libinkscape.a: $(OBJ)
- $(RM) libinkscape.a
- ar crv libinkscape.a $(OBJ)
- $(RANLIB) libinkscape.a
-
-
-clean:
- $(foreach a, $(OBJ), $(shell $(RM) $(subst /,$(S), $(a))))
- $(RM) *.a
-
-