From ff43476c4d293fda8765cfddbb1378f1b910218c Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Sat, 2 Jan 2021 15:52:31 +0000 Subject: Copyright year updated in all source files Having entered 2021, it was necessary to update the copyright years at the top of the source files. We recommend that you do this for all your project-specific source files also. --- project | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'project') diff --git a/project b/project index d75a9ce..1e3546d 100755 --- a/project +++ b/project @@ -3,7 +3,7 @@ # High-level script to manage the project. # Run `./project --help' for a description of how to use it. # -# Copyright (C) 2019-2020 Mohammad Akhlaghi +# Copyright (C) 2019-2021 Mohammad Akhlaghi # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -- cgit v1.2.1 From b1bd282bc3bcd11573fc064edfbab1bd65564348 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Sat, 2 Jan 2021 15:59:49 +0000 Subject: ./project make: new texclean target Until now there was only a 'clean' (to delete all files created during the 'make' phase) and the 'distclean' (to delete all files during configuration and make). But sometimes we don't want to delete all the files created during the full 'make' phase, we only want to delete the files that were created by LaTeX for building the paper. Witht this commit, a new target has been added for this job. You can now run the following command for this job: ./project make texclean Only the files in '$(BDIR)/tex/build' will be deleted (and the 'tikz' directory under that location is recreated, ready for a future build). --- project | 1 + 1 file changed, 1 insertion(+) (limited to 'project') diff --git a/project b/project index 1e3546d..900e02c 100755 --- a/project +++ b/project @@ -91,6 +91,7 @@ Project 'make' special features. ./project make Build the project on one thread ./project make -jN Built the project in parallel on N threads. ./project make clean Clean all files generated by 'make' (not software). + ./project make texclean Clean all files built by (La)TeX. ./project make distclean Clean everything (including compiled software). ./project make dist Produce a LaTeX-ready-to-build distribution tarball ('tar.gz') of the project. This is ready to be -- cgit v1.2.1