comparison Makefile @ 364:bbfcdbd75bfe

Put a "help" target as default target into the Makefile
author Franz Glasner <fzglas.hg@dom66.de>
date Fri, 04 Apr 2025 19:14:20 +0200
parents f9064130af74
children c033f4072c14
comparison
equal deleted inserted replaced
363:f9064130af74 364:bbfcdbd75bfe
1 # dev and build helper 1 # dev and build helper
2 # :- 2 # :-
3 # SPDX-FileCopyrightText: © 2025 Franz Glasner 3 # SPDX-FileCopyrightText: © 2025 Franz Glasner
4 # SPDX-License-Identifier: BSD-3-Clause 4 # SPDX-License-Identifier: BSD-3-Clause
5 # :- 5 # :-
6
7 .PHONY: help clean export-for-dist build distclean dist
8
9 help:
10 @echo Targets: clean, export-for-dist, build, distclean and dist
6 11
7 clean: 12 clean:
8 rm -rf __arch/ 13 rm -rf __arch/
9 find . -name '*.pyc' -delete 14 find . -name '*.pyc' -delete
10 15