diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2019-07-16 13:47:38 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2019-07-16 13:47:38 +0200 |
commit | 69a1aa93b81415a082dc4b5cecaad3d0dc0a97a6 (patch) | |
tree | 1faf77f269c5c43498b44309140a01de83cb0182 /Makefile | |
parent | 0a25815768786155371db7154da84d9cdfc43b3f (diff) |
Basics of MAT exporting
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |