mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-24 17:23:36 +02:00
Add std-targets.mk, meant to be included mostly to make sure all mandatory targets are there. On clean and distclean, it also removes stuff that should not be there anymore after clean. Signed-off-by: Jan Lindemann <jan@janware.com>
10 lines
213 B
Makefile
10 lines
213 B
Makefile
# This file contains a set of targets which
|
|
# 1. are conclusive (i.e. all mandatory targets)
|
|
# 2. don't hurt
|
|
|
|
all:
|
|
install:
|
|
clean: clean.std-targets
|
|
clean.std-targets:
|
|
$(RM) -rf *~ .*.swp *.done
|
|
distclean: clean
|