blob: 80c0757a0783a4fc83ac8634a2e03700cc9d7851 (
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
|
BUILT_SOURCES = itanium_gram.h
AM_YFLAGS = -d
noinst_LTLIBRARIES = libformatmangling.la
libformatmangling_la_SOURCES = \
demangler.h demangler.c \
itanium.h \
itanium_gram.y \
itanium_tok.l
libformatmangling_la_LDFLAGS =
INCLUDES = $(LIBGTK_CFLAGS)
AM_CPPFLAGS =
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
# Automake fait les choses à moitié
CLEANFILES = itanium_gram.h itanium_gram.c itanium_tok.c
|