mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 14:32:24 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
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
|