diff src/protocols/napster/Makefile.mingw @ 8486:538f4d0faf1d

[gaim-migrate @ 9221] Don't use this, it's doesn't work, it's buggy, and it has security problems. I just don't want to pull a Sean Egan and delete everthing I have so far. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 23 Mar 2004 03:39:06 +0000
parents bb7723f0b4b9
children c6dd51ece325
line wrap: on
line diff
--- a/src/protocols/napster/Makefile.mingw	Mon Mar 22 06:00:12 2004 +0000
+++ b/src/protocols/napster/Makefile.mingw	Tue Mar 23 03:39:06 2004 +0000
@@ -1,7 +1,7 @@
 #
 # Makefile.mingw
 #
-# Description: Makefile for win32 (mingw) version of libnapster
+# Description: Makefile for win32 (mingw) version of librendezvous
 #
 
 #
@@ -11,14 +11,14 @@
 INCLUDE_DIR :=		.
 GTK_TOP :=		../../../../win32-dev/gtk_2_0
 GAIM_TOP :=		../../..
-NAPSTER_ROOT :=		.
+RENDEZVOUS_ROOT :=		.
 GAIM_INSTALL_DIR :=	$(GAIM_TOP)/win32-install-dir
 
 ##
 ## VARIABLE DEFINITIONS
 ##
 
-TARGET = libnapster
+TARGET = librendezvous
 
 # Compiler Options
 
@@ -47,7 +47,7 @@
 ## INCLUDE PATHS
 ##
 
-INCLUDE_PATHS +=	-I$(NAPSTER_ROOT) \
+INCLUDE_PATHS +=	-I$(RENDEZVOUS_ROOT) \
 			-I$(GTK_TOP)/include \
 			-I$(GTK_TOP)/include/gtk-2.0 \
 			-I$(GTK_TOP)/include/glib-2.0 \
@@ -68,7 +68,8 @@
 ##  SOURCES, OBJECTS
 ##
 
-C_SRC =			napster.c
+C_SRC =			mdns.c \
+				rendezvous.c
 
 
 OBJECTS = $(C_SRC:%.c=%.o)
@@ -106,7 +107,7 @@
 all: $(TARGET).dll
 
 install:
-	cp $(NAPSTER_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR)
+	cp $(RENDEZVOUS_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR)
 
 
 ##