-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
24 lines (24 loc) · 935 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
me a:
@true
sandwich.:
ifeq ($(shell if touch / 2> /dev/null; then id -u; fi),0)
@echo "Okay."
@echo ' _.---._' >> sandwich
@echo ' _.-~ ~-._' >> sandwich
@echo ' _.-~ ~-._' >> sandwich
@echo ' _.-~ ~---._' >> sandwich
@echo ' _.-~ ~\ ' >> sandwich
@echo '.-~ _.;' >> sandwich
@echo ':-._ _.-~ ./' >> sandwich
@echo '}-._~-._ _..__.-~ _.-~)' >> sandwich
@echo '`-._~-._~-._ / .__..--~_.-~' >> sandwich
@echo ' ~-._~-._\. _.-~_/ _..--~~' >> sandwich
@echo ' ~-. \`--...--~_.-~/~~' >> sandwich
@echo ' \.`--...--~_.-~' >> sandwich
@echo ' ~-..----~' >> sandwich
else
@echo "What? Make it yourself."
endif
clean:
@rm -f sandwich
.PHONY: me a sandwich. clean