star-style

Writing conventions for co-authors
Log | Files | Refs | README | LICENSE

Makefile (1027B)


      1 # Copyright (C) 2026 |Méso|Star> (contact@meso-star.com)
      2 #
      3 # This file is part of Star-Style
      4 #
      5 # Star-Style is free software: you can redistribute it and/or modify
      6 # it under the terms of the GNU General Public License as published by
      7 # the Free Software Foundation, either version 3 of the License, or
      8 # (at your option) any later version.
      9 #
     10 # Star-Style is distributed in the hope that it will be useful, but
     11 # WITHOUT ANY WARRANTY; without even the implied warranty of
     12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     13 # General Public License for more details.
     14 #
     15 # You should have received a copy of the GNU General Public License
     16 # along with Star-Style. If not, see <http://www.gnu.org/licenses/>.
     17 
     18 .POSIX:
     19 
     20 include config.mk
     21 
     22 default:
     23 
     24 lint:
     25 	mandoc -Tlint -Werror doc/fr/star-c.7
     26 
     27 install:
     28 	mkdir -p "$(DESTDIR)$(MANPREFIX)/fr/man7"
     29 	cp doc/fr/star-c.7 "$(DESTDIR)$(MANPREFIX)/fr/man7"
     30 	chmod 644 "$(DESTDIR)$(MANPREFIX)/fr/man7/star-c.7"
     31 
     32 uninstall:
     33 	rm -rf "$(DESTDIR)$(MANPREFIX)/fr/man7/star-c.7"