citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit e51d80e497896061c36250c062c1900fdcc32d02
parent 5f6d87bcf72f3ed33b80a77448bdee546e6072ee
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Thu, 17 Mar 2016 19:27:10 -0600

lib: specify major and minor in Makefile

Diffstat:
Mlib/Makefile | 5++++-
Dlib/shlib_version | 2--
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/lib/Makefile b/lib/Makefile @@ -1,7 +1,10 @@ LIB = scv SRCS = runtime.c -CFLAGS += -std=c89 -pthread +SHLIB_MAJOR = 0 +SHLIB_MINOR = 0 + +CFLAGS += -pthread LDADD += -pthread NOPROFILE = 1 diff --git a/lib/shlib_version b/lib/shlib_version @@ -1,2 +0,0 @@ -major=0 -minor=0