From f299439b972ab8a115f090981a290a4f5e56a3ad Mon Sep 17 00:00:00 2001 From: Stefan Rueger Date: Wed, 27 Jul 2022 00:18:06 +0100 Subject: [PATCH] Move developer_opts* file names from library section to main section for c/make --- src/CMakeLists.txt | 6 +++--- src/Makefile.am | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d3f9b87a..d34e85e0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -133,9 +133,6 @@ add_library(libavrdude confwin.c crc16.c crc16.h - developer_opts.c - developer_opts.h - developer_opts_private.h dfu.c dfu.h fileio.c @@ -253,6 +250,9 @@ add_executable(avrdude main.c term.c term.h + developer_opts.c + developer_opts.h + developer_opts_private.h whereami.c whereami.h "${EXTRA_WINDOWS_RESOURCES}" diff --git a/src/Makefile.am b/src/Makefile.am index f2747c1b..9e0929e1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -110,9 +110,6 @@ libavrdude_a_SOURCES = \ confwin.c \ crc16.c \ crc16.h \ - developer_opts.c \ - developer_opts.h \ - developer_opts_private.h \ dfu.c \ dfu.h \ fileio.c \ @@ -201,6 +198,9 @@ avrdude_SOURCES = \ main.c \ whereami.c \ whereami.h \ + developer_opts.c \ + developer_opts.h \ + developer_opts_private.h \ term.c \ term.h