Search
lxdream.org :: lxdream/Makefile.in :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename Makefile.in
changeset 521:33d2d92784c7
prev517:8191f0d305cb
next526:ba3da45b5754
author nkeynes
date Sat Nov 17 01:17:01 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Skip over the "undefined" instructions that actually pass on the SH4 - leaving
in until we can determine if they actually do anything, or if they're
effectively NOPs
file annotate diff log raw
1.1 --- a/Makefile.in Thu Nov 15 08:18:21 2007 +0000
1.2 +++ b/Makefile.in Sat Nov 17 01:17:01 2007 +0000
1.3 @@ -39,10 +39,19 @@
1.4 AMDEP_FALSE = @AMDEP_FALSE@
1.5 AMDEP_TRUE = @AMDEP_TRUE@
1.6 AMTAR = @AMTAR@
1.7 +ARMCC = @ARMCC@
1.8 +ARMLD = @ARMLD@
1.9 +ARMOBJCOPY = @ARMOBJCOPY@
1.10 AUTOCONF = @AUTOCONF@
1.11 AUTOHEADER = @AUTOHEADER@
1.12 AUTOMAKE = @AUTOMAKE@
1.13 AWK = @AWK@
1.14 +BUILD_ARMTEST_FALSE = @BUILD_ARMTEST_FALSE@
1.15 +BUILD_ARMTEST_TRUE = @BUILD_ARMTEST_TRUE@
1.16 +BUILD_SH4X86_FALSE = @BUILD_SH4X86_FALSE@
1.17 +BUILD_SH4X86_TRUE = @BUILD_SH4X86_TRUE@
1.18 +BUILD_SYSTEST_FALSE = @BUILD_SYSTEST_FALSE@
1.19 +BUILD_SYSTEST_TRUE = @BUILD_SYSTEST_TRUE@
1.20 CATALOGS = @CATALOGS@
1.21 CATOBJEXT = @CATOBJEXT@
1.22 CC = @CC@
1.23 @@ -97,7 +106,10 @@
1.24 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
1.25 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
1.26 SET_MAKE = @SET_MAKE@
1.27 +SHCC = @SHCC@
1.28 SHELL = @SHELL@
1.29 +SHLD = @SHLD@
1.30 +SHOBJCOPY = @SHOBJCOPY@
1.31 STRIP = @STRIP@
1.32 USE_NLS = @USE_NLS@
1.33 VERSION = @VERSION@
1.34 @@ -109,7 +121,11 @@
1.35 am__leading_dot = @am__leading_dot@
1.36 am__quote = @am__quote@
1.37 bindir = @bindir@
1.38 +build = @build@
1.39 build_alias = @build_alias@
1.40 +build_cpu = @build_cpu@
1.41 +build_os = @build_os@
1.42 +build_vendor = @build_vendor@
1.43 datadir = @datadir@
1.44 datarootdir = @datarootdir@
1.45 docdir = @docdir@
1.46 @@ -135,14 +151,15 @@
1.47 sysconfdir = @sysconfdir@
1.48 target_alias = @target_alias@
1.49
1.50 -SUBDIRS = src po test
1.51 +@BUILD_SYSTEST_TRUE@TEST_SUBDIR = test
1.52 +SUBDIRS = src po $(TEST_SUBDIR)
1.53
1.54 EXTRA_DIST = autogen.sh
1.55 subdir = .
1.56 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
1.57 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
1.58 CONFIG_HEADER = config.h
1.59 -CONFIG_CLEAN_FILES =
1.60 +CONFIG_CLEAN_FILES = test/Makefile
1.61 DIST_SOURCES =
1.62
1.63 RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
1.64 @@ -154,7 +171,7 @@
1.65 COPYING ChangeLog INSTALL Makefile.am NEWS acconfig.h \
1.66 aclocal.m4 config.guess config.h.in config.sub configure \
1.67 configure.in depcomp install-sh missing mkinstalldirs
1.68 -DIST_SUBDIRS = $(SUBDIRS)
1.69 +DIST_SUBDIRS = src po test
1.70 all: config.h
1.71 $(MAKE) $(AM_MAKEFLAGS) all-recursive
1.72
1.73 @@ -192,6 +209,8 @@
1.74
1.75 distclean-hdr:
1.76 -rm -f config.h stamp-h1
1.77 +test/Makefile: $(top_builddir)/config.status $(top_srcdir)/test/Makefile.in
1.78 + cd $(top_builddir) && $(SHELL) ./config.status $@
1.79 uninstall-info-am:
1.80
1.81 # This directory's subdirectories are mostly independent; you can cd
1.82 @@ -334,7 +353,7 @@
1.83 distdir: $(DISTFILES)
1.84 $(am__remove_distdir)
1.85 mkdir $(distdir)
1.86 - $(mkinstalldirs) $(distdir)/po
1.87 + $(mkinstalldirs) $(distdir)/po $(distdir)/test
1.88 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
1.89 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
1.90 list='$(DISTFILES)'; for file in $$list; do \
1.91 @@ -361,7 +380,7 @@
1.92 || exit 1; \
1.93 fi; \
1.94 done
1.95 - list='$(SUBDIRS)'; for subdir in $$list; do \
1.96 + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
1.97 if test "$$subdir" = .; then :; else \
1.98 test -d $(distdir)/$$subdir \
1.99 || mkdir $(distdir)/$$subdir \
.