Mercurial > pidgin
annotate plugins/mono/api/Makefile.am @ 11737:3959c29f340f
[gaim-migrate @ 14028]
This isn't customizable yet, but that's looking uglier than I like. This
should still help people like Sean with problems seeing certain colors. I
picked what made sense to me, people please change things if you think
differently.
committer: Tailor Script <tailor@pidgin.im>
| author | Etan Reisner <pidgin@unreliablesource.net> |
|---|---|
| date | Sun, 23 Oct 2005 03:57:10 +0000 |
| parents | 8ebc2219fae3 |
| children | d8f002812186 |
| rev | line source |
|---|---|
| 11660 | 1 SOURCES=\ |
| 2 GaimPlugin.cs \ | |
| 3 Debug.cs \ | |
| 4 BuddyList.cs \ | |
| 5 Buddy.cs \ | |
| 6 Signal.cs \ | |
| 7 Event.cs | |
| 8 | |
| 9 TARGET=GaimAPI.dll | |
| 10 | |
| 11 all: $(TARGET) | |
| 12 | |
| 13 $(TARGET): $(SOURCES) | |
| 14 mcs -t:library -out:$(TARGET) $(SOURCES) | |
| 15 | |
| 16 .PHONY: install clean | |
| 17 | |
|
11661
8ebc2219fae3
[gaim-migrate @ 13946]
Gary Kramlich <grim@reaperworld.com>
parents:
11660
diff
changeset
|
18 install: $(TARGET) |
| 11660 | 19 $(INSTALL) -m 644 $(TARGET) $(libdir)/gaim |
| 20 | |
| 21 clean: | |
| 22 rm -rf $(TARGET) |
