mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-04-16 06:56:43 +02:00
Move each groups of related files to their own line
This commit is contained in:
parent
3de930e682
commit
2d5c088a17
49
Makefile
49
Makefile
@ -16,23 +16,54 @@ LIB_SHARED := $(LIB_SONAME).$(LIB_VERSION_MINOR)
|
|||||||
TAR_NAME := $(LIB_NAME)-$(LIB_VERSION)
|
TAR_NAME := $(LIB_NAME)-$(LIB_VERSION)
|
||||||
TAR_FILE := $(TAR_NAME).tar.gz
|
TAR_FILE := $(TAR_NAME).tar.gz
|
||||||
|
|
||||||
LIB_DIST := Makefile README ChangeLog Versions $(LIB_PKGCONFIG).in
|
LIB_DIST := \
|
||||||
|
Makefile \
|
||||||
|
README \
|
||||||
|
ChangeLog \
|
||||||
|
Versions \
|
||||||
|
$(LIB_PKGCONFIG).in
|
||||||
|
|
||||||
LIB_SRCS := arc4random.c bsd_getopt.c err.c fgetln.c heapsort.c \
|
LIB_SRCS := \
|
||||||
humanize_number.c inet_net_pton.c \
|
arc4random.c \
|
||||||
hash/md5.c hash/md5hl.c \
|
bsd_getopt.c \
|
||||||
setmode.c \
|
err.c \
|
||||||
strlcat.c strlcpy.c fmtcheck.c progname.c vis.c unvis.c
|
fgetln.c \
|
||||||
|
heapsort.c \
|
||||||
|
humanize_number.c \
|
||||||
|
inet_net_pton.c \
|
||||||
|
hash/md5.c hash/md5hl.c \
|
||||||
|
setmode.c \
|
||||||
|
strlcat.c strlcpy.c \
|
||||||
|
fmtcheck.c \
|
||||||
|
progname.c \
|
||||||
|
vis.c unvis.c
|
||||||
LIB_SRCS := $(patsubst %,src/%,$(LIB_SRCS))
|
LIB_SRCS := $(patsubst %,src/%,$(LIB_SRCS))
|
||||||
|
|
||||||
LIB_GEN_SRCS := \
|
LIB_GEN_SRCS := \
|
||||||
man/md5.3 \
|
man/md5.3 \
|
||||||
src/hash/md5hl.c
|
src/hash/md5hl.c
|
||||||
|
|
||||||
LIB_INCLUDES := bsd/err.h bsd/getopt.h bsd/ip_icmp.h bsd/random.h bsd/queue.h bsd/md5.h bsd/string.h \
|
LIB_INCLUDES := \
|
||||||
bsd/bsd.h bsd/cdefs.h bsd/stdlib.h vis.h libutil.h
|
bsd/err.h \
|
||||||
|
bsd/getopt.h \
|
||||||
|
bsd/ip_icmp.h \
|
||||||
|
bsd/random.h \
|
||||||
|
bsd/queue.h \
|
||||||
|
bsd/md5.h \
|
||||||
|
bsd/string.h \
|
||||||
|
bsd/bsd.h \
|
||||||
|
bsd/cdefs.h \
|
||||||
|
bsd/stdlib.h \
|
||||||
|
vis.h \
|
||||||
|
libutil.h
|
||||||
|
|
||||||
LIB_MANS := arc4random.3 strlcpy.3 fgetln.3 fmtcheck.3 setmode.3 md5.3
|
LIB_MANS := \
|
||||||
|
arc4random.3 \
|
||||||
|
strlcpy.3 \
|
||||||
|
fgetln.3 \
|
||||||
|
fmtcheck.3 \
|
||||||
|
setmode.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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user