File: Makefile.am

package info (click to toggle)
fcml 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,536 kB
  • sloc: ansic: 57,510; cpp: 21,835; sh: 4,410; lex: 834; makefile: 508; yacc: 317
file content (26 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (5)
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
noinst_PROGRAMS = fcml_cpp_check

# Include all tests.

fcml_cpp_check_SOURCES = main.cpp \
	dialect_t.cpp \
	dialect_t.hpp \
	common_t.cpp \
	common_t.hpp \
	assembler_t.cpp \
	assembler_t.hpp \
	disassembler_t.cpp \
	disassembler_t.hpp \
	errors_t.cpp \
	errors_t.hpp \
	parser_t.cpp \
	parser_t.hpp

fcml_cpp_check_CPPFLAGS = -Wall -Wno-write-strings -I$(top_srcdir)/include -I$(top_srcdir)/check/stf @FCML_IMPORT_LIB@

fcml_cpp_check_LDADD = $(top_srcdir)/src/libfcml.la $(top_srcdir)/check/stf/libstf.la

check_SCRIPTS = fcml_cpp_check

TESTS = $(check_SCRIPTS)