Fix twilight eye + Makefile hax

This commit is contained in:
Mattia Basaglia 2013-11-08 18:42:21 +01:00
parent e70ee19ebc
commit cfc5affece
10 changed files with 48 additions and 48 deletions

View file

@ -4,10 +4,10 @@
( / \_ `.' / `.
| | ) `;. ,' / \ \
( '. /___/_j_ / ) | )
'\ / __\ ``::'/__' |
|\_ ( / .-| |-.| `-,|
.| ( \ ( (WW| \W)j '
..-----, .|' ', \_\_`_| ``-.
'\ / __\``::'/__' |
|\_ ( / .-| |-.| `-,|
.| ( \ ( (WW| \W)j '
..-----, .|' ', \_\_`_| ``-.
.-` ..::. `,___ |, ._:7 \__/
,' .:::'':::.|.`.`-. |:'. \ ______.-'
.' .::' '::\`.`. `-._| \ \ `"7 /

View file

@ -5,7 +5,7 @@
.-
(WW W
`
.-
(WW W
`

View file

@ -4,10 +4,10 @@
( / \_ `.' /
| | ,' / \
( '. / ) |
\ __ /__'
\_ / -. `
( )
. \ ``-.
\ __ /__'
\_ / -. `
( )
. \ ``-.
..::. ___ |, \__/
.:::'':::.|.`.`-. :'. ______.-'
.::' '::\`.`. `-._ \ \ /

View file

@ -4,7 +4,7 @@
_
/ \
( | | |
\ | \ j
\_ _ _|
/ \
( | | |
\ | \ j
\_ _ _|

View file

@ -4,10 +4,10 @@
( / \_ `.' / `.
| | ) `;. ,' / \ \
( '. /___/_j_ / ) | )
'\ / __\ ``::'/__' |
|\_ ( / .-| |-.| `-,|
.| ( \ ( (WW| \W)j '
..-----, .|' ', \_\_`_| ``-.
'\ / __\``::'/__' |
|\_ ( / .-| |-.| `-,|
.| ( \ ( (WW| \) j '
..-----, .|' ', \_\_`_| ``-.
.-` ..::. `, |, ._:7 \__/
,' .:::'':::. \ |:'. \ ______.-'
.' .::' ':: :._______| \ \ `"7 /

View file

@ -1,13 +1,13 @@
xfffxxxxx c
__ _____ _
/ \__..--"" ;-.",'/
( / \_ `.' / `.
| | ) `;. ,' / \ \
( '. /___/_j_ / ) | )
'\ / __\ ``::'/__' |
|\_ ( / .-| |-.| `-,|
.| ( \ ( (WW| \W)j '
..-----, .|' ', \_\_`_| ``-.
'\ / __ \``::'/__' |
|\_ ( / .- | |-.| `-,|
.| ( \ ((WW | \W)j '
..-----, .|' ', \_ _ _| ``-.
.-` ..::. `, |, ._:7 \__/
,' .:::'':::. \ |:'. \ ______.-'
.' .::' ':: :._______| \ \ `"7 /

View file

@ -5,7 +5,7 @@
.-
(WW W
`
.-
(WW W
`

View file

@ -4,10 +4,10 @@
( / \_ `.' /
| | ,' / \
( '. / ) |
\ __ /__'
\_ / -. `
( )
. \ ``-.
\ __ /__'
\_ / -. `
( )
. \ ``-.
..::. |, \__/
.:::'':::. :'. ______.-'
.::' ':: :._______ \ \ /

View file

@ -1,10 +1,10 @@
_
/ \
( | | |
\ | \ j
\_ _ _|
/ \
( | | |
\ | \ j
\_ _ _|

View file

@ -13,22 +13,22 @@ PONIES= Main6/applejack-nohat \
SCRIPT=$(PWD)/render_parts.php
OUT_PLAIN=$(addsuffix .plain.txt,$(PONIES))
OUT_COLOR=$(addsuffix .colored.txt,$(PONIES))
find_deps=$(subst ;,\;,$(wildcard $(1)/*))
.PHONY: show
find_deps=$(subst ;,\\\;,$(wildcard $(1)/*))
all: $(OUT_COLOR) $(OUT_PLAIN)
define rule_template
$(1).colored.txt: $(call find_deps, $(1))
$(SCRIPT) $(1) >$(1).colored.txt
# %.colored.txt : $(SCRIPT)
# %.colored.txt : $(PWD)/Makefile
%.colored.txt : $(call find_deps, $*)
$(SCRIPT) $* >$*.colored.txt
$(1).plain.txt: $(call find_deps, $(1))
$(SCRIPT) $(1) >$(1).plain.txt nocolor
endef
# %.plain.txt : $(SCRIPT)
# %.plain.txt : $(PWD)/Makefile
%.plain.txt : $(call find_deps, $*)
$(SCRIPT) $* >$*.plain.txt nocolor
$(foreach pony,$(PONIES),$(eval $(call rule_template,$(pony))))
show: $(PONY).colored.txt
@cat $(PONY).colored.txt
@cat $(PONY).colored.txt
show_deps:
@$(foreach d,$(call find_deps,$(PONY)), echo $(d);)