CB100

Notas, resueltos y tps de la materia Algoritmos y Estructuras de Datos
Index Commits Files Refs README
commit b900c9498c699f36113320940d72fa72a83e3e63
parent 954b1a3e1bf0826b271e3b4abb14c608e098073d
Author: Martin Klöckner <mjkloeckner@gmail.com>
Date:   Wed, 12 Jun 2024 21:59:15 -0300

add `Makefile`

Diffstat:
AMakefile | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -0,0 +1,15 @@
+CC := g++
+CFLAGS := -Wall -Wshadow -pedantic -ansi -std=c++98 -O3
+SRCS := $(wildcard *.cpp)
+
+TARGET := main
+
+.PHONY: all clean
+
+all: $(TARGET)
+
+$(TARGET): $(SRCS)
+    $(CC) $(CLIBS) $(CFLAGS) -o $@ $^
+
+clean:
+    rm -f $(TARGET)