forked from inet-framework/inet
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathMakefile_exe
More file actions
27 lines (22 loc) · 791 Bytes
/
Copy pathMakefile_exe
File metadata and controls
27 lines (22 loc) · 791 Bytes
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
all: makefiles
cd src && $(MAKE)
clean:
cd src && $(MAKE) clean
cleanall:
cd src && $(MAKE) MODE=release clean
cd src && $(MAKE) MODE=debug clean
makefiles:
cd src && opp_makemake -f --deep -o inet
@if [ "$$LANG" != "" -o "$$LANGUAGE" != "" ]; then \
echo; \
echo '==============================================================================='; \
echo 'NOTE: if you experience linker errors associated with IPv6ExtensionHeader, try the following commands:'; \
echo ' unset LANG; unset LANGUAGE'; \
echo 'See http://www.omnetpp.org/pmwiki/index.php?n=Main.INETLinkerErrorIPv6ExtensionHeader for more info.'; \
echo '==============================================================================='; \
echo; \
fi
doxy:
doxygen doxy.cfg
tcptut:
cd doc/src/tcp && $(MAKE)