comparison 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
comparison
equal deleted inserted replaced
8487:c3ffec7fab94 8488:c6dd51ece325
1 # 1 #
2 # Makefile.mingw 2 # Makefile.mingw
3 # 3 #
4 # Description: Makefile for win32 (mingw) version of librendezvous 4 # Description: Makefile for win32 (mingw) version of libnapster
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 RENDEZVOUS_ROOT := . 14 NAPSTER_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 = librendezvous 21 TARGET = libnapster
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$(RENDEZVOUS_ROOT) \ 50 INCLUDE_PATHS += -I$(NAPSTER_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 = mdns.c \ 71 C_SRC = napster.c
72 rendezvous.c
73 72
74 73
75 OBJECTS = $(C_SRC:%.c=%.o) 74 OBJECTS = $(C_SRC:%.c=%.o)
76 75
77 76
105 .PHONY: all clean 104 .PHONY: all clean
106 105
107 all: $(TARGET).dll 106 all: $(TARGET).dll
108 107
109 install: 108 install:
110 cp $(RENDEZVOUS_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR) 109 cp $(NAPSTER_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR)
111 110
112 111
113 ## 112 ##
114 ## BUILD Dependencies 113 ## BUILD Dependencies
115 ## 114 ##