File: makefile

package info (click to toggle)
libupnp 1.2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,336 kB
  • ctags: 2,627
  • sloc: ansic: 26,038; makefile: 1,287; xml: 374
file content (207 lines) | stat: -rw-r--r-- 5,906 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
###########################################################################
##
## Copyright (c) 2000-2003 Intel Corporation 
## All rights reserved. 
##
## Redistribution and use in source and binary forms, with or without 
## modification, are permitted provided that the following conditions are met: 
##
## * Redistributions of source code must retain the above copyright notice, 
## this list of conditions and the following disclaimer. 
## * Redistributions in binary form must reproduce the above copyright notice, 
## this list of conditions and the following disclaimer in the documentation 
## and/or other materials provided with the distribution. 
## * Neither name of Intel Corporation nor the names of its contributors 
## may be used to endorse or promote products derived from this software 
## without specific prior written permission.
## 
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
## ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR 
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
## EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
## PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
## PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 
## OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
## NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
## SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
##
###########################################################################

ifdef TARGET
DIR_PATH=$(TARGET)/
CROSS=$(TARGET)-

CC=$(CROSS)gcc
AR=$(CROSS)ar
LD=$(CROSS)ld
STRIP=$(CROSS)strip
else
CC = gcc
AR = ar
LD = ld
STRIP = strip
endif

ifeq ($(DEBUG),1)
OUTPATH=bin/debug/$(DIR_PATH)
else
OUTPATH=bin/$(DIR_PATH)
endif

ifeq ($(STATIC),1)
UPNP=$(OUTPATH)libupnp.a
else
UPNP = $(OUTPATH)libupnp.so
endif

IXML_DIR = ../ixml
THREADUTIL_DIR = ../threadutil

SUBDIRS = src

VERSION=1.2.1

ifeq ($(INSURE),1)
STRIPU =
else
ifeq ($(DEBUG),1)
STRIPU =
else
STRIPU = $(STRIP) $(UPNP)
endif
endif

ifeq ($(STATIC),1)
STRIPU =
endif

ifndef DEBUG
export DEBUG=0
endif

ifndef WEB
export WEB=1
endif

ifndef TOOLS
export TOOLS=1
endif

ifndef CLIENT
export CLIENT=1
endif

ifndef DEVICE
export DEVICE=1
endif

ifeq ($(DEVICE),0)
export WEB=0
endif

ifndef JNI
export JNI=0
endif

all: upnp

upnp:
	@if [ ! -d bin ]; then mkdir bin; fi
	@if [ ! -d lib ]; then mkdir lib; fi
	@if [ ! -d $(OUTPATH) ]; then mkdir -p $(OUTPATH); fi
	@if [ ! -d src/lib ]; then mkdir src/lib; fi
	@$(MAKE) DEBUG=$(DEBUG) all -C $(IXML_DIR)
	@cp $(IXML_DIR)/inc/*.h ./inc

ifeq ($(DEBUG),1)
	@if [ -f $(IXML_DIR)/bin/debug/$(DIR_PATH)libixml.so ]; then \
          cp $(IXML_DIR)/bin/debug/$(DIR_PATH)libixml.so \
             ./bin/debug/$(DIR_PATH); \
        fi
else
	@if [ -f $(IXML_DIR)/bin/$(DIR_PATH)libixml.so ]; then \
          cp $(IXML_DIR)/bin/$(DIR_PATH)libixml.so ./bin/$(DIR_PATH); \
        fi
endif
	@$(MAKE) all DEBUG=$(DEBUG) all -C $(THREADUTIL_DIR)
	@cp $(THREADUTIL_DIR)/inc/*.h ./inc

ifeq ($(DEBUG),1)
	@if [ -f $(THREADUTIL_DIR)/bin/debug/$(DIR_PATH)libthreadutil_dbg.so ]; then \
          cp $(THREADUTIL_DIR)/bin/debug/$(DIR_PATH)libthreadutil_dbg.so \
             ./bin/debug/$(DIR_PATH); \
        fi
else
	@if [ -f $(THREADUTIL_DIR)/bin/$(DIR_PATH)libthreadutil.so ]; then \
          cp $(THREADUTIL_DIR)/bin/$(DIR_PATH)libthreadutil.so \
             ./bin/$(DIR_PATH); \
        fi
endif
	@$(MAKE) DEBUG=$(DEBUG) all -C src
	@$(STRIPU)

doc: html pdf

html:
	@if [ -d doc/html ]; then rm -rf doc/html; fi
	@cd doc; doc++ -nd -S -w -j -d html upnpsdk.dxx

pdf:
	@cd doc; doc++ -nd -S -w -j -t --package a4wide -o upnpsdk.tex upnpsdk.dxx
	@-cd doc; pdflatex "\scrollmode\input upnpsdk.tex" > latex.log
	@-cd doc; pdflatex "\scrollmode\input upnpsdk.tex" >> latex.log
	@-cd doc; pdflatex "\scrollmode\input upnpsdk.tex" >> latex.log
	@$(MAKE) pdf -C $(IXML_DIR)
	@cp $(IXML_DIR)/doc/*.pdf ./doc

clean:
	@set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done
	@if [ -d bin ]; then rm -rf bin; fi
	@-rm -f bin/Test
	@-rm -rf doc/html
	@if [ -f "doc/upnpsdk.tex" ]; then rm doc/upnpsdk.tex; fi
	@if [ -f "doc/upnpsdk.dvi" ]; then rm doc/upnpsdk.dvi; fi
	@if [ -f "doc/upnpsdk.ps"  ]; then rm doc/upnpsdk.ps; fi
	@if [ -f "doc/upnpsdk.log" ]; then rm doc/upnpsdk.log; fi
	@if [ -f "doc/upnpsdk.aux" ]; then rm doc/upnpsdk.aux; fi
	@if [ -f "doc/latex.log"   ]; then rm doc/latex.log; fi
	@$(MAKE) -C $(IXML_DIR) clean
	@$(MAKE) -C $(THREADUTIL_DIR) clean

install: upnp
	@if [ ! -d $(PREFIX)/usr/include/upnp ]; then \
		install -d $(PREFIX)/usr/include/upnp; \
	fi
	@if [ ! -d $(PREFIX)/usr/lib ]; then \
		install -d $(PREFIX)/usr/lib; \
	fi
	@if [ -f bin/$(DIR_PATH)upnp.jar ]; then \
		install bin/$(DIR_PATH)upnp.jar $(PREFIX)/usr/lib; \
	fi
	@install bin/$(DIR_PATH)libupnp.so $(PREFIX)/usr/lib/libupnp.so.$(VERSION)
	@ln -s $(PREFIX)/usr/lib/libupnp.so.$(VERSION) $(PREFIX)/usr/lib/libupnp.so
	@install inc/upnp.h $(PREFIX)/usr/include/upnp
	@install inc/config.h $(PREFIX)/usr/include/upnp
	@install inc/upnptools.h $(PREFIX)/usr/include/upnp

uninstall:
	@rm -f $(PREFIX)/usr/include/upnp/upnp.h
	@rm -f $(PREFIX)/usr/include/upnp/config.h
	@rm -f $(PREFIX)/usr/include/upnp/upnptools.h
	@rm -f $(PREFIX)/usr/lib/libupnp.so
	@rm -f $(PREFIX)/usr/lib/libupnp.so.$(VERSION)

test: upnp
	if [ ! -d bin/tests ]; then mkdir -p bin/tests ; fi
	if [ ! -d src/lib ]; then mkdir src/lib; fi
	cp bin/libupnp.so bin/tests/.
	cp ../ixml/bin/libixml.so bin/tests/.
	cp ../threadutil/bin/libthreadutil.so bin/tests/.
	$(MAKE) -C BuildTest
	cp BuildTest/Test bin/tests/.
	$(MAKE) -C upnptest
	cp upnptest/bin/Sdk* bin/tests/.
	cp upnptest/bin/*.* bin/tests/.