cleanup Makefile and .gitignore
This commit is contained in:
parent
ba9d3ebca2
commit
03c0ec74c0
2 changed files with 5 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,6 +1,6 @@
|
|||
/Dockerfile
|
||||
/app/result/*
|
||||
!/app/result/.gitkeep
|
||||
/app/obj/*
|
||||
!/app/obj/.gitkeep
|
||||
/app/app.apk
|
||||
/app/Makefile.app-config
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue