mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-09 11:17:37 +01:00
Switch remaining variables to single expanded ones
This commit is contained in:
parent
69c94c50d9
commit
83210a83a4
12
Makefile
12
Makefile
@ -1,6 +1,6 @@
|
|||||||
LIB_NAME = libbsd
|
LIB_NAME := libbsd
|
||||||
LIB_VERSION_MAJOR = 0
|
LIB_VERSION_MAJOR := 0
|
||||||
LIB_VERSION_MINOR = 0
|
LIB_VERSION_MINOR := 0
|
||||||
LIB_VERSION := $(LIB_VERSION_MAJOR).$(LIB_VERSION_MINOR)
|
LIB_VERSION := $(LIB_VERSION_MAJOR).$(LIB_VERSION_MINOR)
|
||||||
|
|
||||||
LIB_PKGCONFIG := $(LIB_NAME).pc
|
LIB_PKGCONFIG := $(LIB_NAME).pc
|
||||||
@ -62,10 +62,10 @@ LIB_MANS := \
|
|||||||
md5.3
|
md5.3
|
||||||
LIB_MANS := $(patsubst %,man/%,$(LIB_MANS))
|
LIB_MANS := $(patsubst %,man/%,$(LIB_MANS))
|
||||||
|
|
||||||
LIB_STATIC_OBJS = $(LIB_SRCS:%.c=%.o)
|
LIB_STATIC_OBJS := $(LIB_SRCS:%.c=%.o)
|
||||||
LIB_SHARED_OBJS = $(LIB_SRCS:%.c=%.lo)
|
LIB_SHARED_OBJS := $(LIB_SRCS:%.c=%.lo)
|
||||||
|
|
||||||
MK_CFLAGS = -Iinclude/ -include bsd/bsd.h -D_GNU_SOURCE -D__REENTRANT
|
MK_CFLAGS := -Iinclude/ -include bsd/bsd.h -D_GNU_SOURCE -D__REENTRANT
|
||||||
|
|
||||||
prefix := /usr
|
prefix := /usr
|
||||||
exec_prefix :=
|
exec_prefix :=
|
||||||
|
Loading…
Reference in New Issue
Block a user