mirror of
https://gitlab.com/mattia.basaglia/ASCII-Pony.git
synced 2024-11-22 04:07:59 +01:00
touchput
This commit is contained in:
parent
de1fbf6c5d
commit
b4273a4bed
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -27,7 +27,7 @@ REMOVE_DIR=$(foreach d, $(1), [ -d $(d) ] && rmdir $(d) || true;)
|
|||
MAKE_DIR=mkdir -p
|
||||
|
||||
# NOTE: not .PONY :-P
|
||||
.PHONY: all show show_deps clean list random install uninstall
|
||||
.PHONY: all show show_deps clean list random install uninstall touchput
|
||||
|
||||
all: $(OUT_ALL)
|
||||
|
||||
|
@ -113,3 +113,7 @@ uninstall:
|
|||
$(UNINSTALL_DIR) $(DATADIR)
|
||||
$(UNINSTALL_FILE) $(BINDIR)/systempony
|
||||
$(call REMOVE_DIR, $(DATADIR) $(DATAROOT) $(BINDIR))
|
||||
|
||||
#touch output files to avoid re-generations (eg: after cloning)
|
||||
touchput:
|
||||
find $(MAKEFILE_DIR)rendered -exec touch {} \;
|
||||
|
|
Loading…
Reference in a new issue