stage3/Makefile.am
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Fri, 06 May 2016 11:01:21 +0300
changeset 1006 0668ba32de98
parent 1000 556b74055518
permissions -rw-r--r--
fix C compilation warning about function prototype in __SET_EXTERNAL

Example warning:
./POUS.c:1220:3: error: function declaration isn't a prototype [-Werror=strict-prototypes]
__SET_EXTERNAL(data__->,KN_AUT,,__GET_VAR(data__->KEY_AUT.STATE_OUT));
^
compilation terminated due to -Wfatal-errors.
cc1: all warnings being treated as errors
include ../common.mk

lib_LIBRARIES = libstage3.a

libstage3_a_SOURCES = \
	stage3.cc \
	flow_control_analysis.cc \
	fill_candidate_datatypes.cc \
	narrow_candidate_datatypes.cc \
	forced_narrow_candidate_datatypes.cc \
	print_datatypes_error.cc \
	datatype_functions.cc \
	lvalue_check.cc \
	array_range_check.cc \
	case_elements_check.cc \
        constant_folding.cc \
        declaration_check.cc \
        enum_declaration_check.cc \
        remove_forward_dependencies.cc