From 69a1aa93b81415a082dc4b5cecaad3d0dc0a97a6 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Tue, 16 Jul 2019 13:47:38 +0200 Subject: Basics of MAT exporting --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e98fe38..8db2a45 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC = gcc CFLAGS += -g -Wall -O3 CPPFLAGS += -MMD -LDFLAGS += -pthread -lm +LDFLAGS += -pthread -lm -lmatio PP_BOLD := $(shell tput bold) PP_RESET := $(shell tput sgr0) @@ -10,6 +10,7 @@ PP_LD := $(PP_BOLD)$(shell tput setf 2)LD$(PP_RESET) PP_RM := $(PP_BOLD)$(shell tput setf 4)RM$(PP_RESET) SRC := src/e2e.c \ + src/export.c \ src/main.c OBJ := $(SRC:src/%.c=obj/%.o) -- cgit