Mercurial > pidgin
changeset 11761:d8f002812186
[gaim-migrate @ 14052]
This should fix make disting with the mono plugin enabled.
I believe "SOURCES" is some sort of reserved variable.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 23 Oct 2005 20:43:02 +0000 |
parents | c0fca40fd938 |
children | 81e26b7f262e |
files | plugins/mono/api/Makefile.am |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mono/api/Makefile.am Sun Oct 23 20:39:00 2005 +0000 +++ b/plugins/mono/api/Makefile.am Sun Oct 23 20:43:02 2005 +0000 @@ -1,4 +1,4 @@ -SOURCES=\ +MONOSOURCES = \ GaimPlugin.cs \ Debug.cs \ BuddyList.cs \ @@ -10,8 +10,8 @@ all: $(TARGET) -$(TARGET): $(SOURCES) - mcs -t:library -out:$(TARGET) $(SOURCES) +$(TARGET): $(MONOSOURCES) + mcs -t:library -out:$(TARGET) $(MONOSOURCES) .PHONY: install clean