2015-01-22 20:13:28 +05:30
|
|
|
# rules to build a program
|
2008-01-06 00:55:55 +05:30
|
|
|
# based on FreeBSD's bsd.prog.mk
|
|
|
|
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2008-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2008-01-06 00:55:55 +05:30
|
|
|
|
|
|
|
OBJS+= ${SRCS:.c=.o}
|
|
|
|
|
2008-01-11 22:51:21 +05:30
|
|
|
# Some systems don't include /lib in their standard link path
|
|
|
|
# so we should embed it if different
|
2008-01-12 05:10:22 +05:30
|
|
|
# This is currently hardcoded for NetBSD which has two dynamic linkers
|
|
|
|
# and we need to use the one in /libexec instead of /usr/libexec
|
2008-03-02 16:10:08 +05:30
|
|
|
_DYNLINK_SH= if test "${PREFIX}" = "" && test -e /libexec/ld.elf_so; then \
|
2008-01-12 05:10:22 +05:30
|
|
|
echo "-Wl,-dynamic-linker=/libexec/ld.elf_so"; \
|
2008-01-18 16:56:23 +05:30
|
|
|
else \
|
|
|
|
echo ""; \
|
2008-01-11 22:51:21 +05:30
|
|
|
fi
|
2011-01-30 05:02:38 +05:30
|
|
|
_DYNLINK:= $(shell ${_DYNLINK_SH})
|
|
|
|
LDFLAGS+= ${_DYNLINK}
|
2009-05-02 22:59:00 +05:30
|
|
|
LDFLAGS+= -Wl,-rpath=${PREFIX}/${LIBNAME}
|
2008-01-11 22:51:21 +05:30
|
|
|
LDFLAGS+= ${PROGLDFLAGS}
|
|
|
|
|
2008-03-03 18:34:08 +05:30
|
|
|
CLEANFILES+= ${OBJS} ${PROG}
|
|
|
|
|
2008-01-07 19:50:13 +05:30
|
|
|
all: depend ${PROG}
|
2008-01-06 00:55:55 +05:30
|
|
|
|
2011-10-28 21:44:44 +05:30
|
|
|
%.o: %.c
|
2015-01-22 20:13:28 +05:30
|
|
|
${CC} ${LOCAL_CFLAGS} ${LOCAL_CPPFLAGS} ${CFLAGS} ${CPPFLAGS} -c $< -o $@
|
2008-06-20 04:42:00 +05:30
|
|
|
|
2008-01-06 00:55:55 +05:30
|
|
|
${PROG}: ${SCRIPTS} ${OBJS}
|
2015-01-22 20:13:28 +05:30
|
|
|
${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
|
2008-01-06 00:55:55 +05:30
|
|
|
|
2008-01-09 17:14:43 +05:30
|
|
|
clean:
|
2008-03-03 18:34:08 +05:30
|
|
|
rm -f ${CLEANFILES}
|
2008-01-07 19:50:13 +05:30
|
|
|
|
2008-10-20 17:39:14 +05:30
|
|
|
extra_depend:
|
|
|
|
|
2008-03-19 20:52:20 +05:30
|
|
|
include ${MK}/sys.mk
|
|
|
|
include ${MK}/os.mk
|
2008-01-10 22:05:59 +05:30
|
|
|
include ${MK}/depend.mk
|
2009-04-30 19:35:39 +05:30
|
|
|
include ${MK}/gitignore.mk
|