-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--HG-- branch : release
- Loading branch information
Showing
39 changed files
with
209 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0b9aff908790e0dc941587209eb3a9ce1057004e release/2-alpha.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,25 @@ | ||
# Process this file with autoconf to produce a configure script. | ||
AC_PREREQ([2.69]) | ||
AC_INIT([libvm68k], [2-alpha.1], | ||
[https://bitbucket.org/vx68k/libvm68k/issues/new],, | ||
AC_INIT([libvm68k], [2-alpha.2], | ||
[https://bitbucket.org/kazssym/libvm68k/issues/new],, | ||
[https://www.vx68k.org/vx68k/libvm68k]) | ||
AC_CONFIG_SRCDIR([src/context.cpp]) | ||
AC_CONFIG_SRCDIR([libvm68k/context.cpp]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
AM_INIT_AUTOMAKE([no-define]) | ||
LT_INIT | ||
|
||
LT_PREREQ([2.4.6]) | ||
LT_INIT() | ||
AM_INIT_AUTOMAKE([foreign no-define tar-ustar]) | ||
# Checks for programs. | ||
AC_PROG_CC | ||
AC_PROG_CXX | ||
|
||
# Checks for libraries. | ||
|
||
# Checks for header files. | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
|
||
# Checks for library functions. | ||
PKG_CHECK_MODULES([CPPUNIT], [cppunit],, [no_cppunit=yes]) | ||
AM_CONDITIONAL([CPPUNIT], [test "$no_cppunit" != yes]) | ||
|
||
AC_CONFIG_FILES([Makefile config/Makefile libvm68kapi/Makefile | ||
src/Makefile test/Makefile]) | ||
# Configuration actions. | ||
AC_CONFIG_FILES([Makefile libvm68kapi/Makefile libvm68k/Makefile | ||
test/Makefile]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## Process this file with automake to produce Makefile.in. | ||
|
||
AM_CPPFLAGS = -I$(top_srcdir)/config \ | ||
-I$(top_srcdir)/libvm68kapi -I$(top_builddir)/libvm68kapi | ||
|
||
pkgconfigdir = $(libdir)/pkgconfig | ||
|
||
lib_LTLIBRARIES = libvm68k.la | ||
|
||
EXTRA_DIST = vm68k.pc.in vm68k.cbproj ModelSupport_vm68k | ||
|
||
pkgconfig_DATA = vm68k.pc | ||
|
||
libvm68k_la_LDFLAGS = -version-info 1:0:0 | ||
libvm68k_la_SOURCES = context.cpp | ||
EXTRA_libvm68k_la_SOURCES = win32dll.cpp | ||
|
||
nobase_include_HEADERS = \ | ||
bits/vm68kcore.h bits/vm68k/register.h bits/vm68k/context.h | ||
noinst_HEADERS = vm68kPCH1.h | ||
|
||
CLEANFILES = $(pkgconfig_DATA) | ||
|
||
vm68k.pc: $(srcdir)/vm68k.pc.in $(top_builddir)/config.status | ||
cd $(top_builddir) && $(SHELL) ./config.status --file=$(subdir)/$@ | ||
|
||
installcheck-local: | ||
if test -n '$(PKG_CONFIG)'; then \ | ||
export PKG_CONFIG_PATH=$(pkgconfigdir); \ | ||
$(PKG_CONFIG) --exists --exact-version=$(VERSION) vm68k; \ | ||
fi |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
includedir=@includedir@ | ||
libdir=@libdir@ | ||
|
||
Name: vm68k | ||
Description: libvm68k | ||
Version: @VERSION@ | ||
Requires.private: vm68kapi | ||
Cflags: -I${includedir} | ||
Libs: -L${libdir} -lvm68k |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,29 @@ | ||
## Process this file with automake to produce Makefile.in. | ||
|
||
AM_CPPFLAGS = | ||
AM_CPPFLAGS = -D_VM68K_API_LIBRARY | ||
|
||
pkgconfigdir = $(libdir)/pkgconfig | ||
|
||
lib_LTLIBRARIES = libvm68kapi.la | ||
|
||
EXTRA_DIST = vm68kapi.pc.in | ||
|
||
pkgconfig_DATA = vm68kapi.pc | ||
|
||
nobase_include_HEADERS = vm68k/data vm68k/memory \ | ||
bits/vm68kapi.h bits/vm68k/data.h bits/vm68k/memory.h \ | ||
bits/vm68k/virtual_machine.h | ||
|
||
libvm68kapi_la_LDFLAGS = -version-info 1:0:0 | ||
libvm68kapi_la_SOURCES = data.cpp memory.cpp virtual_machine.cpp | ||
|
||
CLEANFILES = $(pkgconfig_DATA) | ||
|
||
vm68kapi.pc: $(srcdir)/vm68kapi.pc.in $(top_builddir)/config.status | ||
cd $(top_builddir) && $(SHELL) ./config.status --file=$(subdir)/$@ | ||
|
||
installcheck-local: | ||
if test -n '$(PKG_CONFIG)'; then \ | ||
export PKG_CONFIG_PATH=$(pkgconfigdir); \ | ||
$(PKG_CONFIG) --exists --exact-version=$(VERSION) vm68kapi; \ | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.