mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
364272b5b9
2003-07-20 Hans Breuer <hans@breuer.org> * makefile.msc : new file to build it all * Makefile.am : ... added to EXTRA_DIST * gdk/makefile.msc gtk/stock-icons/makefile.msc gtk/makefile.msc.in tests/makefile.msc : updated * gdk/gdk.def gtk/gtk.def : export a bunch of new functions * gtk/gtkbbox.c : use g_return_val_if_fail() if there is a value to return * gtk/gtkfontsel.c gtk/gtkiconfactory.c : static correctness * gtk/gtkicontheme.c : ported to use GTimeVal instead of struct timeval and GTK_DATA_PREFIX instead of GTK_DATADIR * gtk/gtkicontheme.c : use HAVE_LC_MESSAGES * gtk/gtkimmulticontext.c : use gtkprivate.h * gtk/stock-icons/stock_color_picker_25.png gtk/stock-icons/stock_jump_to_rtl_16.png gtk/stock-icons/stock_jump_to_rtl_24.png gtk/stock-icons/stock_redo_rtl_16.png gtk/stock-icons/stock_redo_rtl_24.png gtk/stock-icons/stock_undelete_rtl_16.png gtk/stock-icons/stock_undelete_rtl_24.png gtk/stock-icons/stock_undo_rtl_16.png : gtk/stock-icons/stock_undo_rtl_24.png : readded as binary
25 lines
487 B
Plaintext
25 lines
487 B
Plaintext
## Makefile for building the Gtk+ dlls with Microsoft C
|
|
## Use: nmake -f makefile.msc
|
|
|
|
PARTS = gdk-pixbuf 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
|