git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@620 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.2
Stéphane Fillod, F8CFE 2001-08-08 21:32:25 +00:00
rodzic 94d07bc16c
commit adc6fc184e
4 zmienionych plików z 12 dodań i 7 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
TSSRCLIST = ts870s.c ts570.c
TSSRCLIST = ts870s.c ts570.c ts450s.c
lib_LTLIBRARIES = libhamlib-kenwood.la
libhamlib_kenwood_la_SOURCES = $(TSSRCLIST) kenwood.c

Wyświetl plik

@ -62,10 +62,13 @@ host_triplet = @host@
AS = @AS@
CC = @CC@
CXX = @CXX@
CXXCPP = @CXXCPP@
DLLTOOL = @DLLTOOL@
DLL_PRELOAD = @DLL_PRELOAD@
ECHO = @ECHO@
EXEEXT = @EXEEXT@
GCJ = @GCJ@
GCJFLAGS = @GCJFLAGS@
INCLTDL = @INCLTDL@
INCLUDES = @INCLUDES@
LIBHAMLIBTCL = @LIBHAMLIBTCL@
@ -89,7 +92,7 @@ WINRADIODEPS = @WINRADIODEPS@
WINRADIOLNK = @WINRADIOLNK@
hamlibdocdir = @hamlibdocdir@
TSSRCLIST = ts870s.c ts570.c
TSSRCLIST = ts870s.c ts570.c ts450s.c
lib_LTLIBRARIES = libhamlib-kenwood.la
libhamlib_kenwood_la_SOURCES = $(TSSRCLIST) kenwood.c
@ -113,12 +116,12 @@ LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
libhamlib_kenwood_a_DEPENDENCIES = ../src/libhamlib.la
libhamlib_kenwood_a_OBJECTS = ts870s.$(OBJEXT) ts570.$(OBJEXT) \
kenwood.$(OBJEXT)
ts450s.$(OBJEXT) kenwood.$(OBJEXT)
AR = ar
LTLIBRARIES = $(lib_LTLIBRARIES)
libhamlib_kenwood_la_LIBADD =
libhamlib_kenwood_la_OBJECTS = ts870s.lo ts570.lo kenwood.lo
libhamlib_kenwood_la_OBJECTS = ts870s.lo ts570.lo ts450s.lo kenwood.lo
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@ -133,7 +136,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar
GZIP_ENV = --best
DEP_FILES = .deps/kenwood.P .deps/ts570.P .deps/ts870s.P
DEP_FILES = .deps/kenwood.P .deps/ts450s.P .deps/ts570.P .deps/ts870s.P
SOURCES = $(libhamlib_kenwood_a_SOURCES) $(libhamlib_kenwood_la_SOURCES)
OBJECTS = $(libhamlib_kenwood_a_OBJECTS) $(libhamlib_kenwood_la_OBJECTS)

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kenwood backend - main file
* Copyright (c) 2000,2001 by Stephane Fillod
*
* $Id: kenwood.c,v 1.14 2001-07-13 19:08:15 f4cfe Exp $
* $Id: kenwood.c,v 1.15 2001-08-08 21:32:25 f4cfe Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -1007,6 +1007,7 @@ int init_kenwood(void *be_handle)
{
rig_debug(RIG_DEBUG_VERBOSE, "kenwood: _init called\n");
rig_register(&ts450s_caps);
rig_register(&ts570d_caps);
rig_register(&ts570s_caps);
rig_register(&ts870s_caps);

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kenwood backend - main header
* Copyright (c) 2000,2001 by Stephane Fillod
*
* $Id: kenwood.h,v 1.8 2001-07-13 19:08:15 f4cfe Exp $
* $Id: kenwood.h,v 1.9 2001-08-08 21:32:25 f4cfe Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -51,6 +51,7 @@ const char* kenwood_get_info(RIG *rig);
int kenwood_set_trn(RIG *rig, vfo_t vfo, int trn);
int kenwood_get_trn(RIG *rig, vfo_t vfo, int *trn);
extern const struct rig_caps ts450s_caps;
extern const struct rig_caps ts570d_caps;
extern const struct rig_caps ts570s_caps;
extern const struct rig_caps ts870s_caps;