diff options
author | Pixel <> | 2001-04-15 02:21:56 +0000 |
---|---|---|
committer | Pixel <> | 2001-04-15 02:21:56 +0000 |
commit | ba6d5b2571acd4010c929901b490bcd836c4ca3c (patch) | |
tree | 20c8fa3dedd2aecb6c8448c5f325a8af04875a73 /src/Makefile.am | |
parent | dff18f36172e0209c5dffefe54ec61185f7a8aba (diff) |
Inclusion du simulateur.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0dfd182..f340432 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,10 +3,12 @@ DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ AM_CFLAGS = -O3 -Wall -Wstrict-prototypes $(CFLAGS) INCLUDES = -I. -I.. -I$(includedir) -I../include -bin_PROGRAMS = compilo +bin_PROGRAMS = compilo simul compilo_SOURCES = compilo.c +simul_SOURCES = simul.c LDADD = ../lib/libCompilo.la -compilo_LDADD = $(LDADD) +compilo_LDADD = ../lib/libCompilo.la +simul_LDADD = ../lib/libSimul.la |