Repositories
/
olsrd.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Makefile: WARNINGS: add -Winit-self
[olsrd.git]
/
make
/
Makefile.wince
1
#
2
# WINDOWS CE SPECIFIC CONFIGURATION
3
#
4
5
DESTDIR ?=
6
LIBDIR = $(DESTDIR)/usr/lib
7
8
SRCS += $(wildcard src/win32/*.c)
9
HDRS += $(wildcard src/win32/*.h)
10
11
CPPFLAGS += -DWIN32 -DWINCE
12
LIBS += -lwinsock -liphlpapi
13
14
CPPFLAGS += -Isrc/win32 -Isrc/win32/ce
15
16
ifdef OLSRD_PLUGIN
17
CFLAGS +=
18
LDFLAGS += -lolsrd
19
endif
20
21
OS_LIB_PTHREAD =
22
OS_CFLAG_PTHREAD =
23
OS_LIB_DYNLOAD =
24
25
# Local Variables:
26
# mode: makefile
27
# End: