10 lines
199 B
Makefile
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
|