commit 2ee3a113993c5a58b980061f11a3e23c05f985cd Author: maximo tejeda Date: Sun Aug 11 11:53:53 2024 -0400 first commit diff --git a/.gitea/workflows/firsrtflow.yaml b/.gitea/workflows/firsrtflow.yaml new file mode 100644 index 0000000..561313a --- /dev/null +++ b/.gitea/workflows/firsrtflow.yaml @@ -0,0 +1,4 @@ +huevos +leche +pan +arroz diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d8ca014 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +.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