summaryrefslogtreecommitdiff
path: root/tools/d2c/Makefile.am
blob: dc4fdf81a950eaa4bf7b13546979cf1083aef4cc (plain)
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

BUILT_SOURCES = grammar.h


# On évite d'utiliser les variables personnalisées de type *_la_[YL]FLAGS
# afin de conserver des noms de fichiers simples, ie sans le nom de la
# bibliothèque de sortie en préfixe.

AM_YFLAGS = -v -d -p d2c_

AM_LFLAGS = -P d2c_ -o lex.yy.c --header-file=tokens.h			\
			-Dyylval=d2c_lval -Dyyget_lineno=d2c_get_lineno 	\
			-Dyy_scan_bytes=d2c__scan_bytes						\
			-Dyy_delete_buffer=d2c__delete_buffer

AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS)


bin_PROGRAMS = d2c

.NOTPARALLEL: $(bin_PROGRAMS)

d2c_SOURCES =							\
	coder.h coder.c						\
	tokens.l							\
	grammar.y							\
	helpers.h helpers.c					\
	manual.h							\
	pproc.h pproc.c						\
	qckcall.h qckcall.c					\
	spec.h spec.c

d2c_LDADD =								\
	bits/libd2cbits.la					\
	conv/libd2cconv.la					\
	format/libd2cformat.la				\
	hooks/libd2chooks.la				\
	rules/libd2crules.la				\
	syntax/libd2csyntax.la				\
	args/libd2cargs.la


# Automake fait les choses à moitié
CLEANFILES = grammar.h grammar.c grammar.output tokens.c tokens.h


SUBDIRS = args bits conv format hooks rules syntax