27
27
HAVE_IPV6 ?= yes
28
28
export HAVE_IPV6
29
29
30
+ # directories
31
+ INCDIR = include
32
+ SRCDIR = src
33
+ BUILD = build
34
+
30
35
CC ?= gcc
31
36
# AR = gar
32
37
# CFLAGS = -O -g
@@ -39,6 +44,7 @@ CFLAGS ?= -O
39
44
CFLAGS += -Wall
40
45
CFLAGS += -W -Wstrict-prototypes
41
46
CFLAGS += -fno-common
47
+ CPPFLAGS += -I$(BUILD )
42
48
CPPFLAGS += -DMINIUPNPC_SET_SOCKET_TIMEOUT
43
49
CPPFLAGS += -DMINIUPNPC_GET_SRC_ADDR
44
50
CPPFLAGS += -D_BSD_SOURCE
53
59
# CFLAGS += -ansi
54
60
# CPPFLAGS += -DNO_GETADDRINFO
55
61
62
+ DEPFLAGS = -MM -MG
63
+
64
+ MKDIR = mkdir -p
56
65
INSTALL = install
57
66
SH = /bin/sh
58
67
JAVA = java
@@ -77,72 +86,65 @@ endif
77
86
# APIVERSION is used to build SONAME
78
87
APIVERSION = 17
79
88
80
- SRCS = igd_desc_parse.c miniupnpc.c minixml.c minisoap.c miniwget.c \
81
- upnpc.c upnpcommands.c upnpreplyparse.c testminixml.c \
82
- minixmlvalid.c testupnpreplyparse.c minissdpc.c \
83
- upnperrors.c testigddescparse.c testminiwget.c \
84
- connecthostport.c portlistingparse.c receivedata.c \
85
- upnpdev.c testportlistingparse.c miniupnpcmodule.c \
86
- minihttptestserver.c addr_is_reserved.c testaddr_is_reserved.c \
87
- listdevices.c
89
+ SRCS = $(wildcard $(SRCDIR ) /* .c)
88
90
89
- LIBOBJS = miniwget.o minixml.o igd_desc_parse.o minisoap.o \
91
+ LIBOBJS = $( addprefix $( BUILD ) /, miniwget.o minixml.o igd_desc_parse.o minisoap.o \
90
92
miniupnpc.o upnpreplyparse.o upnpcommands.o upnperrors.o \
91
93
connecthostport.o portlistingparse.o receivedata.o upnpdev.o \
92
- addr_is_reserved.o
94
+ addr_is_reserved.o)
93
95
94
- ifeq (, $(findstring amiga, $(OS ) ) )
95
- ifeq (, $(findstring mingw, $(OS ) )$(findstring cygwin, $(OS ) )$(findstring msys, $(OS ) ) )
96
- CFLAGS := -fPIC $(CFLAGS )
97
- endif
98
- LIBOBJS := $(LIBOBJS ) minissdpc.o
99
- endif
96
+ BUILDINCLUDES = $(addprefix $(BUILD ) /, miniupnpcstrings.h)
100
97
101
- OBJS = $(patsubst % .c,% .o,$(SRCS ) )
98
+ OBJS = $(patsubst $(SRCDIR ) /% .c,$(BUILD ) /% .o,$(SRCS ) )
99
+ DEPS = $(patsubst $(SRCDIR ) /% .c,$(BUILD ) /% .d,$(SRCS ) )
102
100
103
101
# HEADERS to install
104
- CPPFLAGS += -Iinclude/
105
- HEADERS = $(wildcard include /* .h)
102
+ CPPFLAGS += -I $( INCDIR )
103
+ HEADERS = $(wildcard $( INCDIR ) /* .h)
106
104
107
105
# library names
108
- LIBRARY = libminiupnpc.a
106
+ LIBRARY = $( BUILD ) / libminiupnpc.a
109
107
ifneq (, $(findstring darwin, $(OS ) ) )
110
- SHAREDLIBRARY = libminiupnpc.dylib
111
- SONAME = $(basename $(SHAREDLIBRARY ) ) .$(APIVERSION ) .dylib
108
+ SHAREDLIBRARY = $( BUILD ) / libminiupnpc.dylib
109
+ SONAME = $(notdir $( basename $(SHAREDLIBRARY ) ) ) .$(APIVERSION ) .dylib
112
110
CPPFLAGS += -D_DARWIN_C_SOURCE
113
111
else
114
112
ifeq ($(JARSUFFIX ) , win32)
115
- SHAREDLIBRARY = miniupnpc.dll
113
+ SHAREDLIBRARY = $( BUILD ) / miniupnpc.dll
116
114
else
117
115
# Linux/BSD/etc.
118
- SHAREDLIBRARY = libminiupnpc.so
119
- SONAME = $(SHAREDLIBRARY ) .$(APIVERSION )
116
+ SHAREDLIBRARY = $( BUILD ) / libminiupnpc.so
117
+ SONAME = $(notdir $( SHAREDLIBRARY ) ) .$(APIVERSION )
120
118
endif
121
119
endif
122
120
123
- EXECUTABLES = upnpc-static listdevices
124
- EXECUTABLES_ADDTESTS = testminixml minixmlvalid testupnpreplyparse \
125
- testigddescparse testminiwget testportlistingparse
121
+ EXECUTABLES = $( addprefix $( BUILD ) /, upnpc-static listdevices)
122
+ EXECUTABLES_ADDTESTS = $( addprefix $( BUILD ) /, testminixml minixmlvalid \
123
+ testupnpreplyparse testigddescparse testminiwget testportlistingparse)
126
124
127
- TESTMINIXMLOBJS = minixml.o igd_desc_parse.o testminixml.o
125
+ TESTMINIXMLOBJS = $( addprefix $( BUILD ) /, minixml.o igd_desc_parse.o testminixml.o)
128
126
129
- TESTMINIWGETOBJS = miniwget.o testminiwget.o connecthostport.o receivedata.o
127
+ TESTMINIWGETOBJS = $( addprefix $( BUILD ) /, miniwget.o testminiwget.o connecthostport.o receivedata.o)
130
128
131
- TESTUPNPREPLYPARSE = testupnpreplyparse.o minixml.o upnpreplyparse.o
129
+ TESTUPNPREPLYPARSE = $( addprefix $( BUILD ) /, testupnpreplyparse.o minixml.o upnpreplyparse.o)
132
130
133
- TESTPORTLISTINGPARSE = testportlistingparse.o minixml.o portlistingparse.o
131
+ TESTPORTLISTINGPARSE = $( addprefix $( BUILD ) /, testportlistingparse.o minixml.o portlistingparse.o)
134
132
135
- TESTADDR_IS_RESERVED = testaddr_is_reserved.o addr_is_reserved.o
133
+ TESTADDR_IS_RESERVED = $( addprefix $( BUILD ) /, testaddr_is_reserved.o addr_is_reserved.o)
136
134
137
- TESTIGDDESCPARSE = testigddescparse.o igd_desc_parse.o minixml.o \
135
+ TESTIGDDESCPARSE = $( addprefix $( BUILD ) /, testigddescparse.o igd_desc_parse.o minixml.o \
138
136
miniupnpc.o miniwget.o upnpcommands.o upnpreplyparse.o \
139
137
minisoap.o connecthostport.o receivedata.o \
140
- portlistingparse.o addr_is_reserved.o
138
+ portlistingparse.o addr_is_reserved.o)
141
139
142
140
ifeq (, $(findstring amiga, $(OS ) ) )
143
- EXECUTABLES := $(EXECUTABLES ) upnpc-shared
144
- TESTMINIWGETOBJS := $(TESTMINIWGETOBJS ) minissdpc.o
145
- TESTIGDDESCPARSE := $(TESTIGDDESCPARSE ) minissdpc.o
141
+ ifeq (, $(findstring mingw, $(OS ) )$(findstring cygwin, $(OS ) )$(findstring msys, $(OS ) ) )
142
+ CFLAGS += -fPIC
143
+ endif
144
+ EXECUTABLES += $(BUILD ) /upnpc-shared
145
+ TESTMINIWGETOBJS += $(BUILD ) /minissdpc.o
146
+ TESTIGDDESCPARSE += $(BUILD ) /minissdpc.o
147
+ LIBOBJS += $(BUILD ) /minissdpc.o
146
148
endif
147
149
148
150
LIBDIR ?= lib
@@ -160,13 +162,12 @@ PKGCONFIGDIR = $(INSTALLDIRLIB)/pkgconfig
160
162
161
163
FILESTOINSTALL = $(LIBRARY ) $(EXECUTABLES )
162
164
ifeq (, $(findstring amiga, $(OS ) ) )
163
- FILESTOINSTALL := $( FILESTOINSTALL ) $(SHAREDLIBRARY ) miniupnpc.pc
165
+ FILESTOINSTALL += $(SHAREDLIBRARY ) miniupnpc.pc
164
166
endif
165
167
166
168
167
169
.PHONY : install clean depend all check test everything \
168
170
installpythonmodule updateversion
169
- # validateminixml validateminiwget
170
171
171
172
all : $(LIBRARY ) $(EXECUTABLES )
172
173
@@ -177,53 +178,53 @@ check: validateminixml validateminiwget validateupnpreplyparse \
177
178
178
179
everything : all $(EXECUTABLES_ADDTESTS )
179
180
180
- pythonmodule : $(LIBRARY ) miniupnpcmodule.c setup.py
181
+ pythonmodule : $(LIBRARY ) $( SRCDIR ) / miniupnpcmodule.c setup.py
181
182
MAKE=$(MAKE ) python setup.py build
182
183
touch $@
183
184
184
185
installpythonmodule : pythonmodule
185
186
MAKE=$(MAKE ) python setup.py install
186
187
187
- pythonmodule3 : $(LIBRARY ) miniupnpcmodule.c setup.py
188
+ pythonmodule3 : $(LIBRARY ) $( SRCDIR ) / miniupnpcmodule.c setup.py
188
189
MAKE=$(MAKE ) python3 setup.py build
189
190
touch $@
190
191
191
192
installpythonmodule3 : pythonmodule3
192
193
MAKE=$(MAKE ) python3 setup.py install
193
194
194
- validateminixml : minixmlvalid
195
+ validateminixml : $( BUILD ) / minixmlvalid
195
196
@echo " minixml validation test"
196
- ./minixmlvalid
197
+ ./$<
197
198
touch $@
198
199
199
- validateminiwget : testminiwget minihttptestserver testminiwget .sh
200
+ validateminiwget : testminiwget.sh $( BUILD ) /testminiwget $( BUILD ) /minihttptestserver
200
201
@echo " miniwget validation test"
201
- ./testminiwget.sh
202
+ ./$<
202
203
touch $@
203
204
204
- validateupnpreplyparse : testupnpreplyparse testupnpreplyparse .sh
205
+ validateupnpreplyparse : testupnpreplyparse.sh $( BUILD ) /testupnpreplyparse
205
206
@echo " upnpreplyparse validation test"
206
- ./testupnpreplyparse.sh
207
+ ./$<
207
208
touch $@
208
209
209
- validateportlistingparse : testportlistingparse
210
+ validateportlistingparse : $( BUILD ) / testportlistingparse
210
211
@echo " portlistingparse validation test"
211
- ./testportlistingparse
212
+ ./$<
212
213
touch $@
213
214
214
- validateigddescparse : testigddescparse
215
+ validateigddescparse : $( BUILD ) / testigddescparse
215
216
@echo " igd desc parse validation test"
216
- ./testigddescparse testdesc/new_LiveBox_desc.xml testdesc/new_LiveBox_desc.values
217
- ./testigddescparse testdesc/linksys_WAG200G_desc.xml testdesc/linksys_WAG200G_desc.values
217
+ ./$< testdesc/new_LiveBox_desc.xml testdesc/new_LiveBox_desc.values
218
+ ./$< testdesc/linksys_WAG200G_desc.xml testdesc/linksys_WAG200G_desc.values
218
219
touch $@
219
220
220
- validateaddr_is_reserved : testaddr_is_reserved
221
+ validateaddr_is_reserved : $( BUILD ) / testaddr_is_reserved
221
222
@echo " addr_is_reserved() validation test"
222
- ./testaddr_is_reserved
223
+ ./$<
223
224
touch $@
224
225
225
226
clean :
226
- $(RM ) $(LIBRARY ) $(SHAREDLIBRARY ) $(EXECUTABLES ) $(OBJS ) miniupnpcstrings.h
227
+ $(RM ) $(LIBRARY ) $(SHAREDLIBRARY ) $(EXECUTABLES ) $(OBJS ) $( BUILDINCLUDES )
227
228
$(RM ) $(EXECUTABLES_ADDTESTS )
228
229
# clean python stuff
229
230
$(RM ) pythonmodule pythonmodule3
@@ -281,7 +282,8 @@ cleaninstall:
281
282
$(RM ) $(DESTDIR )$(INSTALLDIRLIB ) /$(LIBRARY )
282
283
$(RM ) $(DESTDIR )$(INSTALLDIRLIB ) /$(SHAREDLIBRARY )
283
284
284
- miniupnpc.pc : VERSION
285
+ $(BUILD ) /miniupnpc.pc : VERSION
286
+ @$(MKDIR ) $(BUILD )
285
287
$(RM ) $@
286
288
echo " prefix=$( INSTALLPREFIX) " >> $@
287
289
echo " exec_prefix=\$ ${prefix} " >> $@
@@ -294,8 +296,7 @@ miniupnpc.pc: VERSION
294
296
echo " Libs: -L\$ ${libdir} -lminiupnpc" >> $@
295
297
echo " Cflags: -I\$ ${includedir} " >> $@
296
298
297
- depend :
298
- makedepend -Y -- $(CFLAGS ) $(CPPFLAGS ) -- $(SRCS ) 2> /dev/null
299
+ depend : $(DEPS )
299
300
300
301
$(LIBRARY ) : $(LIBOBJS )
301
302
ifneq (, $(findstring darwin, $(OS ) ) )
@@ -312,30 +313,39 @@ else
312
313
$(CC) -shared $(LDFLAGS) -Wl,-soname,$(SONAME) -o $@ $^
313
314
endif
314
315
315
- upnpc-static : upnpc.o $(LIBRARY )
316
+ $(BUILD ) /% .o : $(SRCDIR ) /% .c $(BUILD ) /% .d
317
+ $(CC ) $(CPPFLAGS ) $(CFLAGS ) -c -o $@ $<
318
+
319
+ $(DEPS ) : $(BUILDINCLUDES )
320
+
321
+ $(BUILD ) /% .d : $(SRCDIR ) /% .c
322
+ @$(MKDIR ) $(@D )
323
+ $(CC ) $(CPPFLAGS ) $(DEPFLAGS ) -MT $@ -o $@ $<
324
+
325
+ $(BUILD ) /upnpc-static : $(BUILD ) /upnpc.o $(LIBRARY )
316
326
$(CC ) $(LDFLAGS ) -o $@ $^ $(LOADLIBES ) $(LDLIBS )
317
327
318
- upnpc-shared : upnpc.o $(SHAREDLIBRARY )
328
+ $( BUILD ) / upnpc-shared : $( BUILD ) / upnpc.o $(SHAREDLIBRARY )
319
329
$(CC ) $(LDFLAGS ) -o $@ $^ $(LOADLIBES ) $(LDLIBS )
320
330
321
- listdevices : listdevices.o $(LIBRARY )
331
+ $( BUILD ) / listdevices : $( BUILD ) / listdevices.o $(LIBRARY )
322
332
323
- testminixml : $(TESTMINIXMLOBJS )
333
+ $( BUILD ) / testminixml : $(TESTMINIXMLOBJS )
324
334
325
- testminiwget : $(TESTMINIWGETOBJS )
335
+ $( BUILD ) / testminiwget : $(TESTMINIWGETOBJS )
326
336
327
- minixmlvalid : minixml.o minixmlvalid.o
337
+ $( BUILD ) / minixmlvalid : $( addprefix $( BUILD ) /, minixml.o minixmlvalid.o)
328
338
329
- testupnpreplyparse : $(TESTUPNPREPLYPARSE )
339
+ $( BUILD ) / testupnpreplyparse : $(TESTUPNPREPLYPARSE )
330
340
331
- testigddescparse : $(TESTIGDDESCPARSE )
341
+ $( BUILD ) / testigddescparse : $(TESTIGDDESCPARSE )
332
342
333
- testportlistingparse : $(TESTPORTLISTINGPARSE )
343
+ $( BUILD ) / testportlistingparse : $(TESTPORTLISTINGPARSE )
334
344
335
- testaddr_is_reserved : $(TESTADDR_IS_RESERVED )
345
+ $( BUILD ) / testaddr_is_reserved : $(TESTADDR_IS_RESERVED )
336
346
337
- miniupnpcstrings.h : miniupnpcstrings.h.in updateminiupnpcstrings.sh VERSION
338
- $(SH ) updateminiupnpcstrings.sh
347
+ $( BUILD ) / miniupnpcstrings.h : miniupnpcstrings.h.in updateminiupnpcstrings.sh VERSION
348
+ $(SH ) updateminiupnpcstrings.sh $@ $<
339
349
340
350
# ftp tool supplied with OpenBSD can download files from http.
341
351
jnaerator-% .jar :
@@ -375,51 +385,9 @@ ideb:
375
385
376
386
minihttptestserver : minihttptestserver.o
377
387
378
- # DO NOT DELETE THIS LINE -- make depend depends on it.
379
-
380
- igd_desc_parse.o : include/igd_desc_parse.h
381
- miniupnpc.o : include/miniupnpc.h include/miniupnpc_declspec.h
382
- miniupnpc.o : include/igd_desc_parse.h include/upnpdev.h minissdpc.h
383
- miniupnpc.o : include/miniwget.h miniwget_private.h miniupnpc_socketdef.h
384
- miniupnpc.o : minisoap.h minixml.h include/upnpcommands.h
385
- miniupnpc.o : include/miniupnpctypes.h connecthostport.h addr_is_reserved.h
386
- minixml.o : minixml.h
387
- minisoap.o : minisoap.h miniupnpc_socketdef.h miniupnpcstrings.h
388
- miniwget.o : miniupnpcstrings.h include/miniwget.h
389
- miniwget.o : include/miniupnpc_declspec.h connecthostport.h
390
- miniwget.o : miniupnpc_socketdef.h receivedata.h
391
- upnpc.o : include/miniwget.h include/miniupnpc_declspec.h include/miniupnpc.h
392
- upnpc.o : include/igd_desc_parse.h include/upnpdev.h include/upnpcommands.h
393
- upnpc.o : include/miniupnpctypes.h include/portlistingparse.h
394
- upnpc.o : include/upnperrors.h miniupnpcstrings.h
395
- upnpcommands.o : include/upnpcommands.h include/miniupnpc_declspec.h
396
- upnpcommands.o : include/miniupnpctypes.h include/miniupnpc.h
397
- upnpcommands.o : include/igd_desc_parse.h include/upnpdev.h
398
- upnpcommands.o : include/portlistingparse.h include/upnpreplyparse.h
399
- upnpreplyparse.o : include/upnpreplyparse.h minixml.h
400
- testminixml.o : minixml.h include/igd_desc_parse.h
401
- minixmlvalid.o : minixml.h
402
- testupnpreplyparse.o : include/upnpreplyparse.h
403
- minissdpc.o : miniupnpc_socketdef.h minissdpc.h include/miniupnpc_declspec.h
404
- minissdpc.o : include/upnpdev.h include/miniupnpc.h include/igd_desc_parse.h
405
- minissdpc.o : receivedata.h codelength.h
406
- upnperrors.o : include/upnperrors.h include/miniupnpc_declspec.h
407
- upnperrors.o : include/upnpcommands.h include/miniupnpctypes.h
408
- upnperrors.o : include/miniupnpc.h include/igd_desc_parse.h include/upnpdev.h
409
- testigddescparse.o : include/igd_desc_parse.h minixml.h include/miniupnpc.h
410
- testigddescparse.o : include/miniupnpc_declspec.h include/upnpdev.h
411
- testminiwget.o : include/miniwget.h include/miniupnpc_declspec.h
412
- connecthostport.o : connecthostport.h miniupnpc_socketdef.h
413
- portlistingparse.o : include/portlistingparse.h include/miniupnpc_declspec.h
414
- portlistingparse.o : include/miniupnpctypes.h minixml.h
415
- receivedata.o : receivedata.h miniupnpc_socketdef.h
416
- upnpdev.o : include/upnpdev.h include/miniupnpc_declspec.h
417
- testportlistingparse.o : include/portlistingparse.h
418
- testportlistingparse.o : include/miniupnpc_declspec.h include/miniupnpctypes.h
419
- miniupnpcmodule.o : include/miniupnpc.h include/miniupnpc_declspec.h
420
- miniupnpcmodule.o : include/igd_desc_parse.h include/upnpdev.h
421
- miniupnpcmodule.o : include/upnpcommands.h include/miniupnpctypes.h
422
- miniupnpcmodule.o : include/upnperrors.h
423
- testaddr_is_reserved.o : addr_is_reserved.h
424
- listdevices.o : include/miniupnpc.h include/miniupnpc_declspec.h
425
- listdevices.o : include/igd_desc_parse.h include/upnpdev.h
388
+ print-% :
389
+ @echo " $* = $( $* ) "
390
+
391
+ ifneq ($(MAKECMDGOALS ) ,clean)
392
+ -include $(DEPS )
393
+ endif
0 commit comments