blob: e84f908fb3e2362233ff3453e7ff6f3f674c4b43 (
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
|
BUILT_SOURCES = gram.h
AM_YFLAGS = -d
lib_LTLIBRARIES = libarchgovm.la
bin_PROGRAMS = goas
#--- liboidadisas
libarchgovm_la_SOURCES = \
instruction.h instruction.c
libarchgovm_la_LDFLAGS =
libarchgovm_la_LIBADD =
#--- goas
goas_SOURCES = \
build.h build.c \
goas.c \
gram.y \
tok.l
AM_CPPFLAGS =
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
goas_LDFLAGS = -L.libs
goas_LDADD = $(LIBINTL) -larchgovm
# Automake fait les choses à moitié
CLEANFILES = gram.h gram.c tok.c
|