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
|
/Dockerfile
|
||||||
/app/result/*
|
/app/result/*
|
||||||
!/app/result/.gitkeep
|
|
||||||
/app/obj/*
|
/app/obj/*
|
||||||
!/app/obj/.gitkeep
|
!/app/obj/.gitkeep
|
||||||
/app/app.apk
|
/app/app.apk
|
||||||
|
/app/Makefile.app-config
|
||||||
|
|
|
@ -76,8 +76,12 @@ Makefile.app-config: app-config.sh Makefile
|
||||||
app-config.sh:
|
app-config.sh:
|
||||||
./.Makefile.scripts/make--app-config.sh
|
./.Makefile.scripts/make--app-config.sh
|
||||||
|
|
||||||
|
# rule to effectuate a cleanup
|
||||||
clean:
|
clean:
|
||||||
rm -rf obj/* result/*
|
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:
|
FORCE:
|
||||||
@true
|
@true
|
||||||
|
|
Loading…
Add table
Reference in a new issue