Add missing %

This commit is contained in:
Guillem Jover 2006-02-14 05:33:38 +00:00
parent 7bd6e03ae0
commit 6be6380e10

View File

@ -9,10 +9,10 @@ LIB_SRCS = arc4random.c bsd_getopt.c err.c fgetln.c inet_net_pton.c \
LIB_INCLUDES := err.h getopt.h ip_icmp.h random.h queue.h md5.h string.h \
bsd.h stdlib.h
LIB_INCLUDES := $(patsubst %,include/bsd/,$(LIB_INCLUDES))
LIB_INCLUDES := $(patsubst %,include/bsd/%,$(LIB_INCLUDES))
LIB_MANS := arc4random.3 strlcpy.3 fgetln.3 fmtcheck.3
LIB_MANS := $(patsubst %,man/,$(LIB_MANS))
LIB_MANS := $(patsubst %,man/%,$(LIB_MANS))
LIB_STATIC_OBJS = $(LIB_SRCS:%.c=%.o)
LIB_SHARED_OBJS = $(LIB_SRCS:%.c=%.lo)