From 3f2e775e45e9c42819cd950a96135e83a00b8bbd Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Wed, 3 Oct 2018 16:10:04 -0400 Subject: LISP ONLY: maintain the emacs lisp plugin generator Add a generator for CMakeLists.txt, remove autotools input generator. Add missing extern declarations for node registrations in .h. Remove extern from the _main_t declaration in .c, so it won't come up undefined at runtime. Reposition forward node declaration relative to CLIB_MARCH_VARIANT conditional, to avoid multiple definition / "_node changed size from X to Y" warnings. Change-Id: I8cc00bca5c40fa3ea00549411a3a9027f97a4826 Signed-off-by: Dave Barach --- extras/emacs/plugin.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extras/emacs/plugin.el') diff --git a/extras/emacs/plugin.el b/extras/emacs/plugin.el index 1481c66dfa8..4d7333c5051 100644 --- a/extras/emacs/plugin.el +++ b/extras/emacs/plugin.el @@ -24,12 +24,12 @@ (setq plugin-flavor (read-string "Dispatch type [dual or qs]: ")) (setq PLUGIN-NAME (upcase plugin-name)) - (find-file (concat plugin-name ".am")) - (skel-plugin-makefile-am-fragment) (setq cmd-args (concat "mkdir -p " plugin-name)) (shell-command cmd-args) (setq cd-args (concat start-dir "/" plugin-name)) (setq default-directory cd-args) + (find-file "CMakeLists.txt") + (skel-plugin-cmakelists-text-fragment) (find-file (concat plugin-name ".api")) (skel-plugin-api) (find-file (concat plugin-name "_all_api_h.h")) -- cgit 1.2.3-korg