 1d15be1599
			
		
	
	1d15be1599
	
	
	
		
			
			2001-11-03 Tor Lillqvist <tml@iki.fi> * modules/input/Makefile.am: Use -no-undefined on Windows. Look for .dll or .so as appropriate as module suffix. * gtk-zip.sh.in: Use correct import library names. * gtk/gtk.def: Add a couple of missing entry points. (#63585) 2001-11-02 Tor Lillqvist <tml@iki.fi> * gtk/gtkrc.c (gtk_rc_make_default_dir): Fix typo: extraneous comma. Include gtkprivate.h for GTK_LIBDIR etc definitions on Windows. 2001-10-30 Tor Lillqvist <tml@iki.fi> * Makefile (install-data-hook): Use cp, not $(LN_S) on the .pc files. Configure on Win32 (running on Cygwin) thinks symlinks exist, but pkg-config is not necesarily a Cygwin program, and doesn't understand them.
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ## Makefile for compiling message catalogs on Win32 with cygwin
 | |
| ##
 | |
| ## Use: make -f makefile.mingw install
 | |
| ##
 | |
| ## To convert the clear-text message catalogs to binary form (.gmo)
 | |
| ## files you will need msgfmt, from GNU gettext.
 | |
| 
 | |
| # This file is possibly included from other po directories, too.  They
 | |
| # should define their own PACKAGE and possibly INSTALLSUBDIR and
 | |
| # LOCALEDIR macros
 | |
| 
 | |
| ifndef PACKAGE
 | |
| PACKAGE = gtk20
 | |
| endif
 | |
| 
 | |
| ifndef LOCALEDIR
 | |
| # This is what I use as installation target, from where the installer-builder
 | |
| # will pick it up. The end-user installation location will be asked by
 | |
| # an installer.
 | |
| LOCALEDIR = /target/lib/locale
 | |
| endif
 | |
| 
 | |
| LANGUAGES = $(subst .po,,$(wildcard *.po))
 | |
| 
 | |
| ################################################################
 | |
| 
 | |
| all : $(addsuffix .gmo,$(LANGUAGES))
 | |
| 
 | |
| install : all
 | |
| 	mkdir -p $(addsuffix /LC_MESSAGES,$(addprefix $(LOCALEDIR)/,$(LANGUAGES)))
 | |
| 	for l in $(LANGUAGES); do cp $$l.gmo $(LOCALEDIR)/$$l/LC_MESSAGES/$(PACKAGE).mo; done
 | |
| 
 | |
| .SUFFIXES: .po .gmo
 | |
| 
 | |
| .po.gmo:
 | |
| 	msgfmt -o $@ $<
 | |
| 
 | |
| clean:
 | |
| 	-rm *.gmo
 |