Browse Source

2006-08-28 Klaus Treichel <ktreichel@web.de>


			
			
				cache-refactoring
			
			
		
Klaus Treichel 18 years ago
parent
commit
b2ad9ed8b5
  1. 6
      ChangeLog
  2. 1
      dpas/Makefile.am
  3. 16
      jit/Makefile.am
  4. 1
      tests/Makefile.am

6
ChangeLog

@ -1,3 +1,9 @@
2006-08-28 Klaus Treichel <ktreichel@web.de>
* dpas/Makefile.am, jit/Makefile.am, tests/Makefile.am: Add missing
sources to fix creation of tarballs (make dist).
2006-08-25 Yan Burman <yan_952@hotmail.com>
* jitdynamic/jit-cpp-mangle.c (mangle_type_gcc3): fix typo in

1
dpas/Makefile.am

@ -8,6 +8,7 @@ dpas_SOURCES = \
dpas-function.c \
dpas-parser.y \
dpas-scanner.l \
dpas-semantics.h \
dpas-scope.c \
dpas-scope.h \
dpas-types.c \

16
jit/Makefile.am

@ -11,9 +11,13 @@ libjit_la_SOURCES = \
jit-apply-arm.c \
jit-apply-x86.h \
jit-apply-x86.c \
jit-apply-x86-64.h \
jit-bitset.h \
jit-bitset.c \
jit-block.c \
jit-cache.h \
jit-cache.c \
jit-cfg.h \
jit-cfg.c \
jit-context.c \
jit-cpuid-x86.h \
@ -32,6 +36,7 @@ libjit_la_SOURCES = \
jit-insn.c \
jit-init.c \
jit-internal.h \
jit-interp.h \
jit-interp.c \
jit-intrinsic.c \
jit-live.c \
@ -52,17 +57,26 @@ libjit_la_SOURCES = \
jit-rules-arm.c \
jit-rules-x86.h \
jit-rules-x86.c \
jit-setjmp.h \
jit-signal.c \
jit-string.c \
jit-symbol.c \
jit-thread.c \
jit-thread.h \
jit-type.c \
jit-value.c \
jit-walk.c
EXTRA_DIST = \
mklabel.sh \
jit-rules-alpha.ins \
jit-rules-arm.sel \
jit-rules-x86.ins \
jit-rules-x86.sel
AM_CFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -I. -I$(srcdir)
libjit_la_LDFLAGS = -version-info $(LIBJIT_VERSION)
libjit_la_LDFLAGS = -version-info $(LIBJIT_VERSION) -no-undefined
jit-interp.lo: jit-interp-labels.h

1
tests/Makefile.am

@ -3,4 +3,5 @@ TESTS = coerce.pas \
loop.pas \
math.pas \
param.pas
EXTRA_DIST = $(TESTS)
TESTS_ENVIRONMENT = $(top_builddir)/dpas/dpas --dont-fold

Loading…
Cancel
Save