commit c45581f3939111932a1afe05c553b70e4ed39fdb parent 28fb82ce0bcafbb10ab3b6d16d4cd41a4652442e Author: mjkloeckner <mjkloeckner@gmail.com> Date: Sat, 15 Jun 2024 18:28:09 -0300 fix cpp libraries extension `.hpp` -> `.h` Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ CC := g++ CFLAGS := -Wall -Wshadow -pedantic -ansi -std=c++98 -O3 SRCS := $(wildcard *.cpp) -LIBS := $(wildcard *.hpp) +LIBS := $(wildcard *.h) TARGET := main
