diff options
author | Guillem Jover <guillem@hadrons.org> | 2008-07-12 07:48:10 +0300 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2008-07-12 08:09:09 +0300 |
commit | 83210a83a4a13115ce653ec5f1419279a63191f7 (patch) | |
tree | e38b716ddaa721e9d7c69fc3dadad07c6c387f24 | |
parent | 69c94c50d98e3aa6ffbaaa9d29e5c257adc58865 (diff) | |
download | libbsd-83210a83a4a13115ce653ec5f1419279a63191f7.tar.gz |
Switch remaining variables to single expanded ones
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,6 +1,6 @@ -LIB_NAME = libbsd -LIB_VERSION_MAJOR = 0 -LIB_VERSION_MINOR = 0 +LIB_NAME := libbsd +LIB_VERSION_MAJOR := 0 +LIB_VERSION_MINOR := 0 LIB_VERSION := $(LIB_VERSION_MAJOR).$(LIB_VERSION_MINOR) LIB_PKGCONFIG := $(LIB_NAME).pc @@ -62,10 +62,10 @@ LIB_MANS := \ md5.3 LIB_MANS := $(patsubst %,man/%,$(LIB_MANS)) -LIB_STATIC_OBJS = $(LIB_SRCS:%.c=%.o) -LIB_SHARED_OBJS = $(LIB_SRCS:%.c=%.lo) +LIB_STATIC_OBJS := $(LIB_SRCS:%.c=%.o) +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 exec_prefix := |