123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693 |
- (eval-when-compile (require 'cl))
- (require 'ede/proj)
- (require 'ede/proj-obj)
- (require 'ede/proj-comp)
- (declare-function ede-srecode-setup "ede/srecode")
- (declare-function ede-srecode-insert "ede/srecode")
- (defmethod ede-proj-makefile-create ((this ede-proj-project) mfilename)
- "Create a Makefile for all Makefile targets in THIS.
- MFILENAME is the makefile to generate."
- (require 'ede/srecode)
- (let ((mt nil)
- (isdist (string= mfilename (ede-proj-dist-makefile this)))
- (depth 0)
- (orig-buffer nil)
- (buff-to-kill nil)
- )
-
- (let ((tmp this))
- (while (setq tmp (ede-parent-project tmp))
- (setq depth (1+ depth))))
-
- (mapc
- (lambda (obj)
- (if (and (obj-of-class-p obj 'ede-proj-target-makefile)
- (string= (oref obj makefile) mfilename))
- (setq mt (cons obj mt))))
- (oref this targets))
-
- (setq mt (nreverse mt))
-
- (save-excursion
- (setq orig-buffer (get-file-buffer mfilename))
- (set-buffer (setq buff-to-kill (find-file-noselect mfilename)))
- (goto-char (point-min))
- (if (and
- (not (eobp))
- (not (looking-at "# Automatically Generated \\w+ by EDE.")))
- (if (not (y-or-n-p (format "Really replace %s? " mfilename)))
- (error "Not replacing Makefile"))
- (message "Replace EDE Makefile"))
- (erase-buffer)
- (ede-srecode-setup)
-
-
- (ede-srecode-insert
- "file:ede-empty"
- "MAKETYPE"
- (with-slots (makefile-type) this
- (cond ((eq makefile-type 'Makefile) "make")
- ((eq makefile-type 'Makefile.in) "autoconf")
- ((eq makefile-type 'Makefile.am) "automake")
- (t (error ":makefile-type in project invalid")))))
-
- (ede-proj-makefile-insert-variables this)
-
- (insert "\n")
- (cond
- ((eq (oref this makefile-type) 'Makefile)
-
- (ede-make-check-version)
- (let* ((targ (if isdist (oref this targets) mt))
- (sp (oref this subproj))
- (df (apply 'append
- (mapcar (lambda (tg)
- (ede-proj-makefile-dependency-files tg))
- targ))))
-
- (ede-compiler-begin-unique
- (mapc 'ede-proj-makefile-insert-variables targ))
-
- (let ((top (ede-toplevel this))
- (tmp this)
- (subdir ""))
- (insert "VERSION=" (oref top version) "\n"
- "DISTDIR=$(top)" (oref top name) "-$(VERSION)")
- (while (ede-parent-project tmp)
- (setq subdir
- (concat
- "/"
- (file-name-nondirectory
- (directory-file-name
- (file-name-directory (oref tmp file))))
- subdir)
- tmp (ede-parent-project tmp)))
- (insert subdir "\n"))
-
- (if df
- (let ((tc depth))
- (insert "top_builddir = ")
- (while (/= 0 tc)
- (setq tc (1- tc))
- (insert "..")
- (if (/= tc 0) (insert "/")))
- (insert "\n")))
- (insert "\n")
-
-
- (if (and (oref this automatic-dependencies) df)
- (progn
- (insert "DEP_FILES="
- (mapconcat (lambda (f)
- (concat ".deps/"
- (file-name-nondirectory
- (file-name-sans-extension
- f)) ".P"))
- df " "))))
-
-
-
- (insert "\n\nall:")
- (mapc (lambda (c)
- (if (and (slot-exists-p c 'partofall) (oref c partofall))
-
- (insert " " (ede-proj-makefile-target-name c))))
- targ)
- (mapc (lambda (c)
- (insert " " (ede-name c))
- )
- sp)
- (insert "\n\n")
-
-
-
- (mapc (lambda (c)
- (insert "include " c "\n\n"))
- (oref this include-file))
-
-
-
-
- (if (and (oref this automatic-dependencies) df)
- (insert "DEPS_MAGIC := $(shell mkdir .deps > /dev/null "
- "2>&1 || :)\n"
- "-include $(DEP_FILES)\n\n"))
-
-
-
- (ede-compiler-begin-unique
- (ede-proj-makefile-insert-rules this)
- (mapc 'ede-proj-makefile-insert-rules targ))
-
-
-
- (mapc 'ede-proj-makefile-insert-subproj-rules sp)
-
-
-
- (when isdist
- (ede-proj-makefile-tags this mt)
- (ede-proj-makefile-insert-dist-rules this)))
- (save-buffer))
- ((eq (oref this makefile-type) 'Makefile.in)
- (error "Makefile.in is not supported"))
- ((eq (oref this makefile-type) 'Makefile.am)
- (require 'ede/pconf)
-
- (ede-proj-makefile-automake-insert-subdirs this)
- (ede-proj-makefile-automake-insert-extradist this)
-
- (let ((targ (if isdist (oref this targets) mt)))
- (ede-compiler-begin-unique
- (mapc 'ede-proj-makefile-insert-automake-pre-variables targ))
- (ede-compiler-begin-unique
- (mapc 'ede-proj-makefile-insert-source-variables targ))
- (ede-compiler-begin-unique
- (mapc 'ede-proj-makefile-insert-automake-post-variables targ))
- (ede-compiler-begin-unique
- (ede-proj-makefile-insert-user-rules this))
- (insert "\n# End of Makefile.am\n")
- (save-buffer))
- )
- (t (error "Unknown makefile type when generating Makefile")))
-
- (goto-char (point-min)))
-
- (when (not orig-buffer)
- (kill-buffer buff-to-kill))
- ))
- (defun ede-pmake-end-of-variable ()
- "Move to the end of the variable declaration under point."
- (end-of-line)
- (while (= (preceding-char) ?\\)
- (forward-char 1)
- (end-of-line))
- )
- (defmacro ede-pmake-insert-variable-shared (varname &rest body)
- "Add VARNAME into the current Makefile.
- Execute BODY in a location where a value can be placed."
- `(let ((addcr t) (v ,varname))
- (if (save-excursion
- (goto-char (point-max))
- (re-search-backward (concat "^" v "\\s-*=") nil t))
- (progn
- (goto-char (match-end 0))
- (ede-pmake-end-of-variable)
- (if (< (current-column) 40)
- (if (and (/= (preceding-char) ?=)
- (/= (preceding-char) ? ))
- (insert " "))
- (insert "\\\n "))
- (setq addcr nil))
- (insert v "="))
- ,@body
- (if addcr (insert "\n"))
- (goto-char (point-max))))
- (put 'ede-pmake-insert-variable-shared 'lisp-indent-function 1)
- (defmacro ede-pmake-insert-variable-once (varname &rest body)
- "Add VARNAME into the current Makefile if it doesn't exist.
- Execute BODY in a location where a value can be placed."
- `(let ((addcr t) (v ,varname))
- (unless (re-search-backward (concat "^" v "\\s-*=") nil t)
- (insert v "=")
- ,@body
- (if addcr (insert "\n"))
- (goto-char (point-max)))
- ))
- (put 'ede-pmake-insert-variable-once 'lisp-indent-function 1)
- (defsubst ede-pmake-varname (obj)
- "Convert OBJ into a variable name name.
- Change . to _ in the variable name."
- (let ((name (oref obj name)))
- (while (string-match "\\." name)
- (setq name (replace-match "_" nil t name)))
- name))
- (defmethod ede-proj-makefile-sourcevar ((this ede-proj-target))
- "Return the variable name for THIS's sources."
- (concat (ede-pmake-varname this) "_YOU_FOUND_A_BUG"))
- (defmethod ede-proj-makefile-dependency-files ((this ede-proj-target))
- "Return a list of source files to convert to dependencies.
- Argument THIS is the target to get sources from."
- nil)
- (defmethod ede-proj-makefile-configuration-variables ((this ede-proj-project)
- configuration)
- "Return a list of configuration variables from THIS.
- Use CONFIGURATION as the current configuration to query."
- (cdr (assoc configuration (oref this configuration-variables))))
- (defmethod ede-proj-makefile-insert-variables-new ((this ede-proj-project))
- "Insert variables needed by target THIS.
- NOTE: Not yet in use! This is part of an SRecode conversion of
- EDE that is in progress."
-
- )
- (defmethod ede-proj-makefile-insert-variables ((this ede-proj-project))
- "Insert variables needed by target THIS."
- (let ((conf-table (ede-proj-makefile-configuration-variables
- this (oref this configuration-default)))
- (conf-done nil))
-
-
- (mapc (lambda (c)
- (insert (car c) "=")
- (if (assoc (car c) conf-table)
- (progn
- (insert (cdr (assoc (car c) conf-table)) " ")
- (setq conf-done (cons (car c) conf-done))))
- (insert (cdr c) "\n"))
- (oref this variables))
-
- (mapc (lambda (c)
- (if (member (car c) conf-done)
- nil
- (insert (car c) "=" (cdr c) "\n")))
- conf-table))
- (let* ((top "")
- (tmp this))
-
- (while (ede-parent-project tmp)
- (setq tmp (ede-parent-project tmp)
- top (concat "../" top)))
-
- (if (and (not (oref this metasubproject)) (string= top ""))
- (insert "\ntop=\"$(CURDIR)\"/")
- (insert "\ntop=" top)))
- (insert "\nede_FILES=" (file-name-nondirectory (oref this file)) " "
- (file-name-nondirectory (ede-proj-dist-makefile this)) "\n"))
- (defmethod ede-proj-makefile-insert-source-variables ((this ede-proj-target)
- &optional
- moresource)
- "Insert the source variables needed by THIS.
- Optional argument MORESOURCE is a list of additional sources to add to the
- sources variable."
- (let ((sv (ede-proj-makefile-sourcevar this)))
-
- (ede-pmake-insert-variable-shared (cond ((listp sv) (car sv))
- (t sv))
- (insert (mapconcat (lambda (a) a) (oref this source) " "))
- (if moresource
- (insert " \\\n " (mapconcat (lambda (a) a) moresource " ") "")))))
- (defmethod ede-proj-makefile-insert-variables ((this ede-proj-target) &optional
- moresource)
- "Insert variables needed by target THIS.
- Optional argument MORESOURCE is a list of additional sources to add to the
- sources variable."
- (ede-proj-makefile-insert-source-variables this moresource)
- )
- (defmethod ede-proj-makefile-configuration-variables ((this ede-proj-target-makefile)
- configuration)
- "Return a list of configuration variables from THIS.
- Use CONFIGURATION as the current configuration to query."
- (cdr (assoc configuration (oref this configuration-variables))))
- (defmethod ede-proj-makefile-insert-variables ((this ede-proj-target-makefile)
- &optional moresource)
- "Insert variables needed by target THIS.
- Optional argument MORESOURCE is a list of additional sources to add to the
- sources variable."
- (call-next-method)
- (let* ((proj (ede-target-parent this))
- (conf-table (ede-proj-makefile-configuration-variables
- this (oref proj configuration-default)))
- (conf-done nil)
- )
-
- (mapc (lambda (c)
- (if (member (car c) conf-done)
- nil
- (insert (car c) "=" (cdr c) "\n")))
- conf-table))
- (let ((comp (ede-proj-compilers this))
- (link (ede-proj-linkers this))
- (name (ede-proj-makefile-target-name this))
- (src (oref this source)))
- (ede-proj-makefile-insert-object-variables (car comp) name src)
- (dolist (obj comp)
- (ede-compiler-only-once obj
- (ede-proj-makefile-insert-variables obj)))
- (dolist (linker link)
- (ede-linker-only-once linker
- (ede-proj-makefile-insert-variables linker)))))
- (defmethod ede-proj-makefile-insert-automake-pre-variables
- ((this ede-proj-target))
- "Insert variables needed by target THIS in Makefile.am before SOURCES."
- nil)
- (defmethod ede-proj-makefile-insert-automake-post-variables
- ((this ede-proj-target))
- "Insert variables needed by target THIS in Makefile.am after SOURCES."
- nil)
- (defmethod ede-proj-makefile-garbage-patterns ((this ede-proj-project))
- "Return a list of patterns that are considered garbage to THIS.
- These are removed with make clean."
- (let ((mc (ede-map-targets
- this (lambda (c) (ede-proj-makefile-garbage-patterns c))))
- (uniq nil))
- (setq mc (sort (apply 'append mc) 'string<))
-
- (while mc
- (if (and (car uniq) (string= (car uniq) (car mc)))
- nil
- (setq uniq (cons (car mc) uniq)))
- (setq mc (cdr mc)))
- (nreverse uniq)))
- (defmethod ede-proj-makefile-garbage-patterns ((this ede-proj-target))
- "Return a list of patterns that are considered garbage to THIS.
- These are removed with make clean."
-
- (let ((src (ede-target-sourcecode this))
- (garb nil))
- (while src
- (setq garb (append (oref (car src) garbagepattern) garb)
- src (cdr src)))
- garb))
- (defmethod ede-proj-makefile-insert-subproj-rules ((this ede-proj-project))
- "Insert a rule for the project THIS which should be a subproject."
- (insert ".PHONY:" (ede-name this))
- (newline)
- (insert (ede-name this) ":")
- (newline)
- (insert "\t$(MAKE) -C " (directory-file-name (ede-subproject-relative-path this)))
- (newline)
- (newline)
- )
- (defmethod ede-proj-makefile-insert-rules ((this ede-proj-project))
- "Insert rules needed by THIS target."
- (mapc 'ede-proj-makefile-insert-rules (oref this inference-rules))
- )
- (defmethod ede-proj-makefile-insert-dist-dependencies ((this ede-proj-project))
- "Insert any symbols that the DIST rule should depend on.
- Argument THIS is the project that should insert stuff."
- (mapc 'ede-proj-makefile-insert-dist-dependencies (oref this targets))
- )
- (defmethod ede-proj-makefile-insert-dist-dependencies ((this ede-proj-target))
- "Insert any symbols that the DIST rule should depend on.
- Argument THIS is the target that should insert stuff."
- nil)
- (defmethod ede-proj-makefile-insert-dist-filepatterns ((this ede-proj-target))
- "Insert any symbols that the DIST rule should depend on.
- Argument THIS is the target that should insert stuff."
- (ede-proj-makefile-insert-dist-dependencies this)
- )
- (defmethod ede-proj-makefile-automake-insert-subdirs ((this ede-proj-project))
- "Insert a SUBDIRS variable for Automake."
- (proj-comp-insert-variable-once "SUBDIRS"
- (ede-map-subprojects
- this (lambda (sproj)
- (insert " " (ede-subproject-relative-path sproj))
- ))))
- (defmethod ede-proj-makefile-automake-insert-extradist ((this ede-proj-project))
- "Insert the EXTRADIST variable entries needed for Automake and EDE."
- (proj-comp-insert-variable-once "EXTRA_DIST" (insert "Project.ede")))
- (defmethod ede-proj-makefile-insert-dist-rules ((this ede-proj-project))
- "Insert distribution rules for THIS in a Makefile, such as CLEAN and DIST."
- (let ((junk (ede-proj-makefile-garbage-patterns this))
- tmp)
-
- (if junk
- (insert "\nclean:\n"
- "\trm -f "
- (mapconcat (lambda (c) c) junk " ")
- "\n\n"))
-
- (insert ".PHONY: dist\n")
- (insert "\ndist:")
- (ede-proj-makefile-insert-dist-dependencies this)
- (insert "\n")
- (unless (or (ede-subproject-p this)
- (oref this metasubproject))
-
- (insert "\trm -rf $(DISTDIR)\n"))
- (insert "\tmkdir $(DISTDIR)\n")
- (setq tmp (oref this targets))
- (insert "\tcp")
- (while tmp
- (let ((sv (ede-proj-makefile-sourcevar (car tmp))))
- (if (listp sv)
-
- (cond ((eq (cdr sv) 'share)
-
- (if (re-search-backward (concat "\\$(" (car sv) ")")
- (point-at-bol) t)
-
- nil
- (setq sv (car sv))))
- (t (setq sv (car sv)))))
- (if (stringp sv)
- (insert " $(" sv ")"))
- (ede-proj-makefile-insert-dist-filepatterns (car tmp))
- (setq tmp (cdr tmp))))
- (insert " $(ede_FILES) $(DISTDIR)\n")
-
- (ede-map-subprojects
- this (lambda (sproj)
- (let ((rp (directory-file-name (ede-subproject-relative-path sproj))))
- (insert "\t$(MAKE) -C " rp " $(MFLAGS) DISTDIR=$(DISTDIR)/" rp
- " dist"
- "\n"))))
-
- (unless (or (ede-subproject-p this)
- (oref this metasubproject))
- (insert "\ttar -cvzf $(DISTDIR).tar.gz $(DISTDIR)\n"
- "\trm -rf $(DISTDIR)\n"))
-
- (insert "\n"
- (file-name-nondirectory (buffer-file-name)) ": "
- (file-name-nondirectory (oref this file)) "\n"
- "\t@echo Makefile is out of date! "
- "It needs to be regenerated by EDE.\n"
- "\t@echo If you have not modified Project.ede, you can"
- " use 'touch' to update the Makefile time stamp.\n"
- "\t@false\n\n"
- "\n\n# End of Makefile\n")))
- (defmethod ede-proj-makefile-insert-rules ((this ede-proj-target))
- "Insert rules needed by THIS target."
- nil)
- (defmethod ede-proj-makefile-insert-rules ((this ede-proj-target-makefile))
- "Insert rules needed by THIS target."
- (mapc 'ede-proj-makefile-insert-rules (oref this rules))
- (let ((c (ede-proj-compilers this)))
- (when c
- (mapc 'ede-proj-makefile-insert-rules c)
- (if (oref this phony)
- (insert ".PHONY: " (ede-proj-makefile-target-name this) "\n"))
- (insert (ede-proj-makefile-target-name this) ": "
- (ede-proj-makefile-dependencies this) "\n")
- (ede-proj-makefile-insert-commands this)
- )))
- (defmethod ede-proj-makefile-insert-commands ((this ede-proj-target-makefile))
- "Insert the commands needed by target THIS.
- For targets, insert the commands needed by the chosen compiler."
- (mapc 'ede-proj-makefile-insert-commands (ede-proj-compilers this))
- (when (object-assoc t :uselinker (ede-proj-compilers this))
- (mapc 'ede-proj-makefile-insert-commands (ede-proj-linkers this))))
- (defmethod ede-proj-makefile-insert-user-rules ((this ede-proj-project))
- "Insert user specified rules needed by THIS target.
- This is different from `ede-proj-makefile-insert-rules' in that this
- function won't create the building rules which are auto created with
- automake."
- (mapc 'ede-proj-makefile-insert-user-rules (oref this inference-rules)))
- (defmethod ede-proj-makefile-insert-user-rules ((this ede-proj-target))
- "Insert user specified rules needed by THIS target."
- (mapc 'ede-proj-makefile-insert-rules (oref this rules)))
- (defmethod ede-proj-makefile-dependencies ((this ede-proj-target-makefile))
- "Return a string representing the dependencies for THIS.
- Some compilers only use the first element in the dependencies, others
- have a list of intermediates (object files), and others don't care.
- This allows customization of how these elements appear."
- (let* ((c (ede-proj-compilers this))
- (io (eval (cons 'or (mapcar 'ede-compiler-intermediate-objects-p c))))
- (out nil))
- (if io
- (progn
- (while c
- (setq out
- (concat out "$(" (ede-compiler-intermediate-object-variable
- (car c)
- (ede-proj-makefile-target-name this)) ")")
- c (cdr c)))
- out)
- (let ((sv (ede-proj-makefile-sourcevar this))
- (aux (oref this auxsource)))
- (setq out
- (if (and (stringp sv) (not (string= sv "")))
- (concat "$(" sv ")")
- ""))
- (while aux
- (setq out (concat out " " (car aux)))
- (setq aux (cdr aux)))
- out))))
- (defmethod ede-proj-makefile-tags ((this ede-proj-project) targets)
- "Insert into the current location rules to make recursive TAGS files.
- Argument THIS is the project to create tags for.
- Argument TARGETS are the targets we should depend on for TAGS."
- (insert "tags: ")
- (let ((tg targets))
-
- (while tg
- (insert "$(" (ede-proj-makefile-sourcevar (car tg)) ") ")
- (setq tg (cdr tg)))
- (insert "\n")
- (if targets
- (insert "\tetags $^\n"))
-
- (setq tg (oref this subproj))
- (while tg
- (insert "\t$(MAKE) -C " (ede-subproject-relative-path (car tg)) " $(MFLAGS) $@\n")
- (setq tg (cdr tg)))
- (insert "\n")))
- (provide 'ede/pmake)
|