initial push

This commit is contained in:
Bernd Mueller
2026-06-17 13:44:30 +02:00
commit adfd70813f
372 changed files with 146450 additions and 0 deletions

46
m68k/lib/Makefile.am Normal file
View File

@@ -0,0 +1,46 @@
##
## $Id: Makefile.am,v 1.6 2008/03/06 10:35:40 cjohns Exp $
##
## This file is part of a free BDM package
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
AM_CPPFLAGS = -I$(srcdir)/../driver
AM_CFLAGS =
if BDM_IOPERM
AM_CFLAGS += -DBDM_IOPERM=1
endif
if BDM_REMOTE
AM_CFLAGS += -DBDM_DEVICE_REMOTE=1
endif
if BDM_DRIVER
AM_CFLAGS += -DBDM_DEVICE_LOCAL=1
endif
if TBLCF_USB
AM_CFLAGS += -DBDM_TBLCF_USB=1
AM_CPPFLAGS += -I$(srcdir)/../tblcf
endif
lib_LIBRARIES = libBDM.a
include_HEADERS = \
BDMlib.h \
bdmRemote.h \
../driver/bdm.h
libBDM_a_SOURCES = \
bdmIO.c \
bdmRemote.c
# FIXME: these would belong to driver/Makefile.am, which we don't have
EXTRA_DIST = \
../driver/bdm.c \
../driver/ioperm/ioperm.c