mirror of
https://github.com/sigmasternchen/sandwich
synced 2025-03-15 07:58:55 +00:00
23 lines
353 B
Makefile
23 lines
353 B
Makefile
![]() |
counter=a
|
||
|
|
||
|
nothing:
|
||
|
@echo "I'm in! "
|
||
|
|
||
|
default:
|
||
|
echo "Huh?"
|
||
|
|
||
|
me:
|
||
|
@$(eval counter+=b)
|
||
|
@echo -n
|
||
|
a:
|
||
|
@$(eval counter+=c)
|
||
|
@echo -n
|
||
|
|
||
|
sandwich:
|
||
|
@if test "$(counter)" = "a b c"; then if test "$(id -u)" = "0"; then echo "Okay."; else echo "What? Make it yourself."; fi; else echo "sry, I can't unterstand you."; fi
|
||
|
|
||
|
sandwich,: sandwich
|
||
|
|
||
|
bitch:
|
||
|
@echo -n
|