kopia lustrzana https://github.com/Hamlib/Hamlib
regenerated
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@493 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.1.1
rodzic
aebf5a58b1
commit
0b2b629a1c
|
@ -80,7 +80,8 @@ WINRADIODEPS = @WINRADIODEPS@
|
|||
WINRADIOLNK = @WINRADIOLNK@
|
||||
hamlibdocdir = @hamlibdocdir@
|
||||
|
||||
bin_PROGRAMS = dumpcaps dumpmem testcaps testrig testtrn testbcd testfreq listrigs rigctl @RIGMATRIX@
|
||||
noinst_PROGRAMS = dumpcaps dumpmem testcaps testrig testtrn testbcd testfreq listrigs @RIGMATRIX@
|
||||
bin_PROGRAMS = rigctl
|
||||
EXTRA_PROGRAMS = rigmatrix
|
||||
|
||||
# all the programs need this
|
||||
|
@ -121,7 +122,7 @@ rigmatrix_SOURCES = rigmatrix.c
|
|||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../include/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
PROGRAMS = $(bin_PROGRAMS)
|
||||
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
|
||||
|
||||
|
||||
DEFS = @DEFS@ -I. -I$(srcdir) -I../include
|
||||
|
@ -130,6 +131,8 @@ LDFLAGS = @LDFLAGS@
|
|||
LIBS = @LIBS@
|
||||
rigmatrix_OBJECTS = rigmatrix.o
|
||||
rigmatrix_LDFLAGS =
|
||||
rigctl_OBJECTS = rigctl.o
|
||||
rigctl_LDFLAGS =
|
||||
dumpcaps_OBJECTS = dumpcaps.o
|
||||
dumpcaps_LDFLAGS =
|
||||
dumpmem_OBJECTS = dumpmem.o
|
||||
|
@ -150,8 +153,6 @@ testfreq_DEPENDENCIES = ../src/libhamlib.la
|
|||
testfreq_LDFLAGS =
|
||||
listrigs_OBJECTS = listrigs.o
|
||||
listrigs_LDFLAGS =
|
||||
rigctl_OBJECTS = rigctl.o
|
||||
rigctl_LDFLAGS =
|
||||
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)
|
||||
|
@ -167,8 +168,8 @@ GZIP_ENV = --best
|
|||
DEP_FILES = .deps/dumpcaps.P .deps/dumpmem.P .deps/listrigs.P \
|
||||
.deps/rigctl.P .deps/rigmatrix.P .deps/testbcd.P .deps/testcaps.P \
|
||||
.deps/testfreq.P .deps/testrig.P .deps/testtrn.P
|
||||
SOURCES = $(rigmatrix_SOURCES) $(dumpcaps_SOURCES) $(dumpmem_SOURCES) $(testcaps_SOURCES) $(testrig_SOURCES) $(testtrn_SOURCES) $(testbcd_SOURCES) $(testfreq_SOURCES) $(listrigs_SOURCES) $(rigctl_SOURCES)
|
||||
OBJECTS = $(rigmatrix_OBJECTS) $(dumpcaps_OBJECTS) $(dumpmem_OBJECTS) $(testcaps_OBJECTS) $(testrig_OBJECTS) $(testtrn_OBJECTS) $(testbcd_OBJECTS) $(testfreq_OBJECTS) $(listrigs_OBJECTS) $(rigctl_OBJECTS)
|
||||
SOURCES = $(rigmatrix_SOURCES) $(rigctl_SOURCES) $(dumpcaps_SOURCES) $(dumpmem_SOURCES) $(testcaps_SOURCES) $(testrig_SOURCES) $(testtrn_SOURCES) $(testbcd_SOURCES) $(testfreq_SOURCES) $(listrigs_SOURCES)
|
||||
OBJECTS = $(rigmatrix_OBJECTS) $(rigctl_OBJECTS) $(dumpcaps_OBJECTS) $(dumpmem_OBJECTS) $(testcaps_OBJECTS) $(testrig_OBJECTS) $(testtrn_OBJECTS) $(testbcd_OBJECTS) $(testfreq_OBJECTS) $(listrigs_OBJECTS)
|
||||
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
|
@ -206,6 +207,15 @@ uninstall-binPROGRAMS:
|
|||
rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
|
||||
done
|
||||
|
||||
mostlyclean-noinstPROGRAMS:
|
||||
|
||||
clean-noinstPROGRAMS:
|
||||
-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
|
||||
|
||||
distclean-noinstPROGRAMS:
|
||||
|
||||
maintainer-clean-noinstPROGRAMS:
|
||||
|
||||
.s.o:
|
||||
$(COMPILE) -c $<
|
||||
|
||||
|
@ -242,6 +252,10 @@ rigmatrix: $(rigmatrix_OBJECTS) $(rigmatrix_DEPENDENCIES)
|
|||
@rm -f rigmatrix
|
||||
$(LINK) $(rigmatrix_LDFLAGS) $(rigmatrix_OBJECTS) $(rigmatrix_LDADD) $(LIBS)
|
||||
|
||||
rigctl: $(rigctl_OBJECTS) $(rigctl_DEPENDENCIES)
|
||||
@rm -f rigctl
|
||||
$(LINK) $(rigctl_LDFLAGS) $(rigctl_OBJECTS) $(rigctl_LDADD) $(LIBS)
|
||||
|
||||
dumpcaps: $(dumpcaps_OBJECTS) $(dumpcaps_DEPENDENCIES)
|
||||
@rm -f dumpcaps
|
||||
$(LINK) $(dumpcaps_LDFLAGS) $(dumpcaps_OBJECTS) $(dumpcaps_LDADD) $(LIBS)
|
||||
|
@ -274,10 +288,6 @@ listrigs: $(listrigs_OBJECTS) $(listrigs_DEPENDENCIES)
|
|||
@rm -f listrigs
|
||||
$(LINK) $(listrigs_LDFLAGS) $(listrigs_OBJECTS) $(listrigs_LDADD) $(LIBS)
|
||||
|
||||
rigctl: $(rigctl_OBJECTS) $(rigctl_DEPENDENCIES)
|
||||
@rm -f rigctl
|
||||
$(LINK) $(rigctl_LDFLAGS) $(rigctl_OBJECTS) $(rigctl_LDADD) $(LIBS)
|
||||
|
||||
tags: TAGS
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP)
|
||||
|
@ -395,25 +405,27 @@ distclean-generic:
|
|||
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
mostlyclean-am: mostlyclean-binPROGRAMS mostlyclean-compile \
|
||||
mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
|
||||
mostlyclean-generic
|
||||
mostlyclean-am: mostlyclean-binPROGRAMS mostlyclean-noinstPROGRAMS \
|
||||
mostlyclean-compile mostlyclean-libtool \
|
||||
mostlyclean-tags mostlyclean-depend mostlyclean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
clean-am: clean-binPROGRAMS clean-compile clean-libtool clean-tags \
|
||||
clean-depend clean-generic mostlyclean-am
|
||||
clean-am: clean-binPROGRAMS clean-noinstPROGRAMS clean-compile \
|
||||
clean-libtool clean-tags clean-depend clean-generic \
|
||||
mostlyclean-am
|
||||
|
||||
clean: clean-am
|
||||
|
||||
distclean-am: distclean-binPROGRAMS distclean-compile distclean-libtool \
|
||||
distclean-tags distclean-depend distclean-generic \
|
||||
clean-am
|
||||
distclean-am: distclean-binPROGRAMS distclean-noinstPROGRAMS \
|
||||
distclean-compile distclean-libtool distclean-tags \
|
||||
distclean-depend distclean-generic clean-am
|
||||
-rm -f libtool
|
||||
|
||||
distclean: distclean-am
|
||||
|
||||
maintainer-clean-am: maintainer-clean-binPROGRAMS \
|
||||
maintainer-clean-noinstPROGRAMS \
|
||||
maintainer-clean-compile maintainer-clean-libtool \
|
||||
maintainer-clean-tags maintainer-clean-depend \
|
||||
maintainer-clean-generic distclean-am
|
||||
|
@ -424,6 +436,8 @@ maintainer-clean: maintainer-clean-am
|
|||
|
||||
.PHONY: mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
|
||||
maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
|
||||
mostlyclean-noinstPROGRAMS distclean-noinstPROGRAMS \
|
||||
clean-noinstPROGRAMS maintainer-clean-noinstPROGRAMS \
|
||||
mostlyclean-compile distclean-compile clean-compile \
|
||||
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
|
||||
clean-libtool maintainer-clean-libtool tags mostlyclean-tags \
|
||||
|
|
Ładowanie…
Reference in New Issue