diff --git a/make/main.scm b/make/main.scm index fff1645..0e65498 100644 --- a/make/main.scm +++ b/make/main.scm @@ -1,8 +1,25 @@ +;;; The Project Manager ("pman") -- GNU Guile-based solution for project management +;;; Copyright (C) 2021 Mike Gran +;;; Copyright (C) 2022 Jacob Hrbek +;;; +;;; 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 . + (define-module (make main) #:use-module (ice-9 getopt-long) - #:export (main) - ) + #:export (main)) +;;; Commentary: +;;; +;;; This file is designed to process the command line arguments using the standardized 'getopts-long' as described in the GNU Guile reference manual . +;;; +;;; Code: + +;; FIXME-QA(Krey): Is this even needed? +;; Declare exit codes (define EXIT_SUCCESS 0) (define EXIT_NOT_UP_TO_DATE 1) (define EXIT_FAILURE 2) @@ -25,4 +42,5 @@ (write options) (newline) EXIT_SUCCESS)) - + +;;; make.scm ends here