diff src/protocols/napster/Makefile.mingw @ 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 538f4d0faf1d
children
line wrap: on
line diff
--- 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)
 
 
 ##