summaryrefslogtreecommitdiff
path: root/makefile.msc
diff options
context:
space:
mode:
Diffstat (limited to 'makefile.msc')
-rw-r--r--makefile.msc24
1 files changed, 0 insertions, 24 deletions
diff --git a/makefile.msc b/makefile.msc
deleted file mode 100644
index 3af6b7c911..0000000000
--- a/makefile.msc
+++ /dev/null
@@ -1,24 +0,0 @@
-## Makefile for building the Gtk+ dlls with Microsoft C
-## Use: nmake -f makefile.msc
-
-PARTS = gdk gtk tests
-
-all : \
- config.h \
- sub-all
-
-sub-all:
- for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=all
-
-clean : sub-clean
-
-sub-clean:
- for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=clean
-
-sub-one:
- @cd $(THIS)
- @nmake -nologo -f makefile.msc $(TARGET)
- @cd ..
-
-config.h: config.h.win32
- copy config.h.win32 config.h