diff options
author | Pixel <> | 2001-04-16 14:25:48 +0000 |
---|---|---|
committer | Pixel <> | 2001-04-16 14:25:48 +0000 |
commit | 47f363829678a02111423cd5d374e6739d8ea500 (patch) | |
tree | 5c288a8902492e1a91d87ba4ab1cca658e39cbfa /src/Makefile.am | |
parent | 27f796ab6a9f455bbd2a1c85088db5304cece75a (diff) |
Linker + bugfixes
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f340432..5b3c985 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,12 +3,12 @@ DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ AM_CFLAGS = -O3 -Wall -Wstrict-prototypes $(CFLAGS) INCLUDES = -I. -I.. -I$(includedir) -I../include -bin_PROGRAMS = compilo simul +bin_PROGRAMS = compilo simul linker compilo_SOURCES = compilo.c simul_SOURCES = simul.c - -LDADD = ../lib/libCompilo.la +linker_SOURCES = linker.c compilo_LDADD = ../lib/libCompilo.la simul_LDADD = ../lib/libSimul.la +linker_LDADD = ../lib/libLinker.la |