comparison 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
comparison
equal deleted inserted replaced
8485:db4a125edd7b 8486:538f4d0faf1d
1 # 1 #
2 # Makefile.mingw 2 # Makefile.mingw
3 # 3 #
4 # Description: Makefile for win32 (mingw) version of libnapster 4 # Description: Makefile for win32 (mingw) version of librendezvous
5 # 5 #
6 6
7 # 7 #
8 # PATHS 8 # PATHS
9 # 9 #
10 10
11 INCLUDE_DIR := . 11 INCLUDE_DIR := .
12 GTK_TOP := ../../../../win32-dev/gtk_2_0 12 GTK_TOP := ../../../../win32-dev/gtk_2_0
13 GAIM_TOP := ../../.. 13 GAIM_TOP := ../../..
14 NAPSTER_ROOT := . 14 RENDEZVOUS_ROOT := .
15 GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir 15 GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir
16 16
17 ## 17 ##
18 ## VARIABLE DEFINITIONS 18 ## VARIABLE DEFINITIONS
19 ## 19 ##
20 20
21 TARGET = libnapster 21 TARGET = librendezvous
22 22
23 # Compiler Options 23 # Compiler Options
24 24
25 CFLAGS = 25 CFLAGS =
26 26
45 45
46 ## 46 ##
47 ## INCLUDE PATHS 47 ## INCLUDE PATHS
48 ## 48 ##
49 49
50 INCLUDE_PATHS += -I$(NAPSTER_ROOT) \ 50 INCLUDE_PATHS += -I$(RENDEZVOUS_ROOT) \
51 -I$(GTK_TOP)/include \ 51 -I$(GTK_TOP)/include \
52 -I$(GTK_TOP)/include/gtk-2.0 \ 52 -I$(GTK_TOP)/include/gtk-2.0 \
53 -I$(GTK_TOP)/include/glib-2.0 \ 53 -I$(GTK_TOP)/include/glib-2.0 \
54 -I$(GTK_TOP)/include/pango-1.0 \ 54 -I$(GTK_TOP)/include/pango-1.0 \
55 -I$(GTK_TOP)/include/atk-1.0 \ 55 -I$(GTK_TOP)/include/atk-1.0 \
66 66
67 ## 67 ##
68 ## SOURCES, OBJECTS 68 ## SOURCES, OBJECTS
69 ## 69 ##
70 70
71 C_SRC = napster.c 71 C_SRC = mdns.c \
72 rendezvous.c
72 73
73 74
74 OBJECTS = $(C_SRC:%.c=%.o) 75 OBJECTS = $(C_SRC:%.c=%.o)
75 76
76 77
104 .PHONY: all clean 105 .PHONY: all clean
105 106
106 all: $(TARGET).dll 107 all: $(TARGET).dll
107 108
108 install: 109 install:
109 cp $(NAPSTER_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR) 110 cp $(RENDEZVOUS_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR)
110 111
111 112
112 ## 113 ##
113 ## BUILD Dependencies 114 ## BUILD Dependencies
114 ## 115 ##