cleanup Makefile and .gitignore

This commit is contained in:
Alexander Mahr 2024-12-29 09:17:22 +01:00
parent ba9d3ebca2
commit 03c0ec74c0
2 changed files with 5 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,6 +1,6 @@
/Dockerfile
/app/result/*
!/app/result/.gitkeep
/app/obj/*
!/app/obj/.gitkeep
/app/app.apk
/app/Makefile.app-config

View file

@ -76,8 +76,12 @@ Makefile.app-config: app-config.sh Makefile
app-config.sh:
./.Makefile.scripts/make--app-config.sh
# rule to effectuate a cleanup
clean:
rm -rf obj/* result/*
# this rule's purpose is to run "by force" no matter what, doing nothing
# as listed prerequisite to another rule it causes that rule to be made/run
# unconditionally every time
FORCE:
@true