Quality Assurance, Audit and Tags #14
@ -1,6 +1,23 @@
|
|||||||
|
;;; The Project Manager ("pman") -- GNU Guile-based solution for project management
|
||||||
|
;;; Copyright (C) 2021 Mike Gran <spk121@yahoo.com>
|
||||||
|
;;; Copyright (C) 2022 Jacob Hrbek <kreyren@rixotstudio.cz>
|
||||||
|
;;;
|
||||||
|
;;; The Project Manager is a Free/Libre Open-Source Software; you can redistribute it and/or modify it under the terms of the MIT License as published by the Massachusetts Institute of Technology
|
||||||
|
;;;
|
||||||
|
;;; This project is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MIT License for more details.
|
||||||
|
;;;
|
||||||
|
;;; You should have received a copy of the MIT License along with the project. If not, see <https://mit-license.org>.
|
||||||
|
|
||||||
(define-module (potato builtins)
|
(define-module (potato builtins)
|
||||||
#:export (builtin-makevars
|
#:export (builtin-makevars
|
||||||
builtin-rules))
|
; builtin-rules
|
||||||
|
))
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
;;;
|
||||||
|
;;; Declaration of the built-in functionality such as variables and helper rules
|
||||||
|
;;;
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
(define builtin-makevars
|
(define builtin-makevars
|
||||||
'(("MAKE" . "make")
|
'(("MAKE" . "make")
|
||||||
@ -19,6 +36,7 @@
|
|||||||
("GUILD" . "guild")
|
("GUILD" . "guild")
|
||||||
("GFLAGS" . "-W2")))
|
("GFLAGS" . "-W2")))
|
||||||
|
|
||||||
|
;; FIXME(Krey): This was commented out by the original author and it's use needs to be abstracted and re-implemented
|
||||||
#;(define builtin-rules
|
#;(define builtin-rules
|
||||||
`((".c"
|
`((".c"
|
||||||
""
|
""
|
||||||
@ -56,3 +74,5 @@
|
|||||||
(".scm"
|
(".scm"
|
||||||
".go"
|
".go"
|
||||||
(,~ ,($ GUILD) "compile" ,($ GFLAGS) ,$<))))
|
(,~ ,($ GUILD) "compile" ,($ GFLAGS) ,$<))))
|
||||||
|
|
||||||
|
;;; builtins.scm ends here
|
||||||
|
Loading…
Reference in New Issue
Block a user