diff po/Makefile.mingw @ 16039:ded8da3de5f8

This should get all the Win32 Makefiles in line with the names Pidgin and Purple. I tried to separate PIDGIN and PURPLE values as much as a could to make it easier to divide them later if that's ever desired.
author Kevin Stange <kevin@simguy.net>
date Tue, 10 Apr 2007 06:19:29 +0000
parents e04c98c1bce9
children aaaff38e144f
line wrap: on
line diff
--- a/po/Makefile.mingw	Mon Apr 09 22:54:39 2007 +0000
+++ b/po/Makefile.mingw	Tue Apr 10 06:19:29 2007 +0000
@@ -3,8 +3,8 @@
 # Description: Makefile to generate mo files
 #
 
-GAIM_TOP := ..
-include $(GAIM_TOP)/libpurple/win32/global.mak
+PIDGIN_TREE_TOP := ..
+include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
 
 PACKAGE = pidgin
 
@@ -33,19 +33,19 @@
 all: $(CATALOGS)
 
 install: all
-	mkdir -p $(GAIM_INSTALL_PO_DIR)
+	mkdir -p $(PURPLE_INSTALL_PO_DIR)
 	@catalogs='$(CATALOGS)'; \
 	for cat in $$catalogs; do \
 	  cat=`basename $$cat`; \
 	  lang=`echo $$cat | sed 's/\.gmo$$//'`; \
-	  dir=$(GAIM_INSTALL_PO_DIR)/$$lang/LC_MESSAGES; \
+	  dir=$(PURPLE_INSTALL_PO_DIR)/$$lang/LC_MESSAGES; \
 	  mkdir -p $$dir; \
 	  if test -r $$cat; then \
 	    cp $$cat $$dir/$(PACKAGE).mo; \
 	    echo "installing $$cat as $$dir/$(PACKAGE).mo"; \
 	  else \
-	    cp $(GAIM_PO_TOP)/$$cat $$dir/$(PACKAGE).mo; \
-	    echo "installing $(GAIM_PO_TOP)/$$cat as" \
+	    cp $(PURPLE_PO_TOP)/$$cat $$dir/$(PACKAGE).mo; \
+	    echo "installing $(PURPLE_PO_TOP)/$$cat as" \
 		 "$$dir/$(PACKAGE).mo"; \
 	  fi; \
 	done