mirror of
https://github.com/nasa/trick.git
synced 2025-01-09 14:32:53 +00:00
18 lines
505 B
Makefile
18 lines
505 B
Makefile
|
|
||
|
include ${TRICK_HOME}/makefiles/Makefile.common
|
||
|
include ${TRICK_HOME}/makefiles/Makefile.tricklib
|
||
|
-include Makefile_deps
|
||
|
|
||
|
$(L_OBJS) : TRICK_CXXFLAGS += -Wno-unused-parameter -Wno-unused-function -Wno-sign-compare -x c++
|
||
|
$(Y_OBJS) : TRICK_CXXFLAGS += -Wno-unused-parameter -Wno-unused -x c++
|
||
|
|
||
|
ifeq ($(IS_CC_CLANG), 1)
|
||
|
$(Y_OBJS) : TRICK_CXXFLAGS += -Wno-parentheses-equality
|
||
|
endif
|
||
|
|
||
|
# suppress warnings files with shadowing.
|
||
|
$(CPP_OBJS) : TRICK_CXXFLAGS += -Wno-shadow
|
||
|
|
||
|
docs: MM.doxygen
|
||
|
doxygen MM.doxygen
|