mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
25 lines
476 B
Plaintext
25 lines
476 B
Plaintext
## 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
|