```.PHONY: all guajillo_sauce potato_chorizo_mix stuffed_rolls fried_pambazo...

@mistersql

```.PHONY: all guajillo_sauce potato_chorizo_mix stuffed_rolls fried_pambazo final_pambazo
all: final_pambazo
guajillo_sauce:
@Echo "Prepare guajillo sauce (if making homemade), set aside."
potato_chorizo_mix: guajillo_sauce
@Echo "Boil potatoes until tender, then drain and mash slightly leaving some chunks."
@Echo "In a pan, sauté vegan chorizo until browned. Combine with potatoes, add salt to taste."
```

Self-replies

@Echo ```stuffed_rolls: potato_chorizo_mix
@Echo "Cut a slit on the side of each roll, and stuff with potato-chorizo mix. Add vegan cheese."
fried_pambazo: guajillo_sauce stuffed_rolls
@Echo "Heat oil in a pan, dip each stuffed roll into guajillo sauce, coat on all sides."
@Echo "Fry each roll in the pan until golden."
final_pambazo: fried_pambazo
@Echo "Let cool for a minute. Open the slit & stuff with lettuce, vegan sour cream, refried beans, red onion, and avocado slices."
```

@Echo To execute

```bash
sudo make
```