Mercurial > pidgin.yaz
changeset 8488:c6dd51ece325
[gaim-migrate @ 9223]
I'm astounded that this happened.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 23 Mar 2004 03:51:35 +0000 |
parents | c3ffec7fab94 |
children | b06dcc915c45 |
files | src/protocols/napster/Makefile.am src/protocols/napster/Makefile.mingw |
diffstat | 2 files changed, 14 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/napster/Makefile.am Tue Mar 23 03:45:13 2004 +0000 +++ b/src/protocols/napster/Makefile.am Tue Mar 23 03:51:35 2004 +0000 @@ -1,32 +1,26 @@ -EXTRA_DIST = \ - Makefile.mingw - pkgdir = $(libdir)/gaim -RENDEZVOUSSOURCES = \ - mdns.c \ - rendezvous.c +NAPSTERSOURCES = napster.c AM_CFLAGS = $(st) -librendezvous_la_LDFLAGS = -module -avoid-version +libnapster_la_LDFLAGS = -module -avoid-version -if STATIC_RENDEZVOUS +if STATIC_NAPSTER st = -DGAIM_STATIC_PRPL -noinst_LIBRARIES = librendezvous.a -librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES) -librendezvous_a_CFLAGS = $(AM_CFLAGS) +noinst_LIBRARIES = libnapster.a +libnapster_a_SOURCES = $(NAPSTERSOURCES) +libnapster_a_CFLAGS = $(AM_CFLAGS) else st = -pkg_LTLIBRARIES = librendezvous.la -librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES) +pkg_LTLIBRARIES = libnapster.la +libnapster_la_SOURCES = $(NAPSTERSOURCES) endif - AM_CPPFLAGS = \ -I$(top_srcdir)/src \ $(GLIB_CFLAGS) \
--- a/src/protocols/napster/Makefile.mingw Tue Mar 23 03:45:13 2004 +0000 +++ b/src/protocols/napster/Makefile.mingw Tue Mar 23 03:51:35 2004 +0000 @@ -1,7 +1,7 @@ # # Makefile.mingw # -# Description: Makefile for win32 (mingw) version of librendezvous +# Description: Makefile for win32 (mingw) version of libnapster # # @@ -11,14 +11,14 @@ INCLUDE_DIR := . GTK_TOP := ../../../../win32-dev/gtk_2_0 GAIM_TOP := ../../.. -RENDEZVOUS_ROOT := . +NAPSTER_ROOT := . GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir ## ## VARIABLE DEFINITIONS ## -TARGET = librendezvous +TARGET = libnapster # Compiler Options @@ -47,7 +47,7 @@ ## INCLUDE PATHS ## -INCLUDE_PATHS += -I$(RENDEZVOUS_ROOT) \ +INCLUDE_PATHS += -I$(NAPSTER_ROOT) \ -I$(GTK_TOP)/include \ -I$(GTK_TOP)/include/gtk-2.0 \ -I$(GTK_TOP)/include/glib-2.0 \ @@ -68,8 +68,7 @@ ## SOURCES, OBJECTS ## -C_SRC = mdns.c \ - rendezvous.c +C_SRC = napster.c OBJECTS = $(C_SRC:%.c=%.o) @@ -107,7 +106,7 @@ all: $(TARGET).dll install: - cp $(RENDEZVOUS_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR) + cp $(NAPSTER_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR) ##