test_actions/Makefile
2024-08-11 11:53:53 -04:00

10 lines
199 B
Makefile

.PHONY: all clean build output all: output
output: # Comandos para generar el producto final $(MAKE) -C src
build: output
clean:
rm -rf output # Otros comandos para limpiar la carpeta de salida