summaryrefslogtreecommitdiff
path: root/src/arch/x86
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-05-11 15:22:42 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-05-11 15:22:42 (GMT)
commit80dc0ac97987ad9246bee7c47458a015339453bf (patch)
treed049aaa7417e9568adbec073fc74cac1df619aed /src/arch/x86
parente2f87e6e92a361cdd66b6867f51dda2abb1ed1b3 (diff)
Changed the way the program is built.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@62 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86')
-rw-r--r--src/arch/x86/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/Makefile.am b/src/arch/x86/Makefile.am
index e2847ab..95298b9 100644
--- a/src/arch/x86/Makefile.am
+++ b/src/arch/x86/Makefile.am
@@ -1,7 +1,7 @@
-lib_LIBRARIES = libarchx86.a
+lib_LTLIBRARIES = libarchx86.la
-libarchx86_a_SOURCES = \
+libarchx86_la_SOURCES = \
instruction.h \
op_adc.c \
op_add.c \
@@ -40,7 +40,7 @@ libarchx86_a_SOURCES = \
operand.h operand.c \
processor.h processor.c
-libarchx86_a_CFLAGS = $(AM_CFLAGS)
+libarchx86_la_CFLAGS = $(AM_CFLAGS)
INCLUDES = $(LIBGTK_CFLAGS)