forked from inet-framework/inet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
63 lines (47 loc) · 2.09 KB
/
Makefile
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
FEATURETOOL = opp_featuretool
FEATURES_H = src/inet/features.h
.PHONY: all clean cleanall makefiles makefiles-so makefiles-lib makefiles-exe checkenvir checkmakefiles doxy doc submodule-init
all: checkmakefiles $(FEATURES_H)
@cd src && $(MAKE)
clean: checkmakefiles
@cd src && $(MAKE) clean
cleanall: checkmakefiles
@cd src && $(MAKE) MODE=release clean
@cd src && $(MAKE) MODE=debug clean
@rm -f src/Makefile $(FEATURES_H)
INET_PROJ = $(shell inet_root)
MAKEMAKE_OPTIONS := -f --deep -o INET -O out -pINET -I.
makefiles: makefiles-so
makefiles-so: checkenvir $(FEATURES_H)
@FEATURE_OPTIONS=$$($(FEATURETOOL) options -f -l) && cd src && opp_makemake --make-so $(MAKEMAKE_OPTIONS) $$FEATURE_OPTIONS
makefiles-lib: checkenvir $(FEATURES_H)
@FEATURE_OPTIONS=$$($(FEATURETOOL) options -f -l) && cd src && opp_makemake --make-lib $(MAKEMAKE_OPTIONS) $$FEATURE_OPTIONS
makefiles-exe: checkenvir $(FEATURES_H)
@FEATURE_OPTIONS=$$($(FEATURETOOL) options -f -l) && cd src && opp_makemake $(MAKEMAKE_OPTIONS) $$FEATURE_OPTIONS
checkenvir:
@if [ "$(INET_PROJ)" = "" ]; then \
echo; \
echo '==========================================================================='; \
echo '<inet_root>/setenv is not sourced. Please change to the INET root directory'; \
echo 'and type "source setenv" to initialize the environment!'; \
echo '==========================================================================='; \
echo; \
exit 1; \
fi
checkmakefiles:
@if [ ! -f src/Makefile ]; then \
echo; \
echo '========================================================================'; \
echo 'src/Makefile does not exist. Please use "make makefiles" to generate it!'; \
echo '========================================================================'; \
echo; \
exit 1; \
fi
# generate an include file that contains all the WITH_FEATURE macros according to the current enablement of features
$(FEATURES_H): $(wildcard .oppfeaturestate) .oppfeatures
@$(FEATURETOOL) defines >$(FEATURES_H)
doc:
@cd doc/src && $(MAKE)
@doxygen doxy.cfg
ddoc:
@cd doc/src && ./docker-make html && echo "===> file:$$(pwd)/_build/html/index.html"