mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	2001-09-21 Hans Breuer <hans@breuer.org> * makefile.msc : added rule for glibconfig.h * glib/giowin32.c (g_io_channel_new_file) : always open in binary mode * glib/glib.def : updated externals * glib/gwin32.c : re-added LANG_* and SUBLANG_* definitions, which are missing from the msvc 5.0 win32 sdk * glib/makefile.msc.in : added gbsearcharry
		
			
				
	
	
		
			29 lines
		
	
	
		
			585 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			585 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
## Makefile for building the GLib dlls with Microsoft C
 | 
						|
## Use: nmake -f makefile.msc
 | 
						|
 | 
						|
PARTS = glib gmodule gthread gobject tests
 | 
						|
 | 
						|
all : \
 | 
						|
	config.h \
 | 
						|
	glibconfig.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
 | 
						|
 | 
						|
glibconfig.h: glibconfig.h.win32
 | 
						|
	copy glibconfig.h.win32 glibconfig.h
 |