Mercurial > pidgin
annotate src/protocols/trepia/Makefile.am @ 7118:bf630f7dfdcd
[gaim-migrate @ 7685]
Here's a commit that I think will make faceprint happy. GaimWindow ->
GaimConvWindow, GaimIm -> GaimConvIm, GaimChat -> GaimConvChat,
GaimBlistChat -> GaimChat, and updated the API functions as well. Plugin
authors are going to hunt me down and murder me. I can feel it..
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Thu, 02 Oct 2003 02:54:07 +0000 |
| parents | 8f94cce8faa5 |
| children | bb0160033e50 |
| rev | line source |
|---|---|
| 5730 | 1 pkgdir = $(libdir)/gaim |
| 2 | |
| 3 TREPIASOURCES = \ | |
| 4 md5.h \ | |
| 5 profile.c \ | |
| 6 profile.h \ | |
| 7 trepia.c | |
| 8 | |
| 9 AM_CFLAGS = $(st) | |
| 10 | |
| 11 libtrepia_la_LDFLAGS = -module -avoid-version | |
| 12 | |
| 13 if STATIC_TREPIA | |
| 14 | |
| 15 st = -DSTATIC | |
| 16 noinst_LIBRARIES = libtrepia.a | |
| 17 libtrepia_a_SOURCES = $(TREPIASOURCES) | |
| 18 libtrepia_a_CFLAGS = $(AM_CFLAGS) | |
| 19 | |
| 20 else | |
| 21 | |
| 22 st = | |
| 23 pkg_LTLIBRARIES = libtrepia.la | |
| 24 libtrepia_la_SOURCES = $(TREPIASOURCES) | |
| 25 | |
| 26 endif | |
| 27 | |
| 28 AM_CPPFLAGS = \ | |
| 29 -I$(top_srcdir)/src \ | |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
30 $(GLIB_CFLAGS) \ |
| 5730 | 31 $(DEBUG_CFLAGS) |
