1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#
# Makefile.mingw
#
# Description: Makefile for guifications default theme
#
GF_TOP := ../..
-include $(GF_TOP)/local.mak
PIDGIN_TREE_TOP ?= ../../../../..
include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
PIDGIN_DATADIR = $(PIDGIN_INSTALL_DIR)
include ./Makefile.am
.PHONY: install
install:
if test '$(guificationsdefaulttheme_DATA)'; then \
mkdir -p $(guificationsdefaultthemedir); \
cp $(guificationsdefaulttheme_DATA) $(guificationsdefaultthemedir); \
fi;
|