f6072c8b5e
This is a small sample cross-platform networking library
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: buildlink.mk,v 1.1.1.1 2001/07/10 09:05:28 zuntum Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use SDL_net.
|
|
#
|
|
# To use this Makefile fragment, simply:
|
|
#
|
|
# (1) Optionally define BUILDLINK_DEPENDS.SDL_net to the dependency pattern
|
|
# for the version of SDL_net desired.
|
|
# (2) Include this Makefile fragment in the package Makefile,
|
|
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
|
|
# search path, and
|
|
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
|
|
# path.
|
|
|
|
.if !defined(SDL_NET_BUILDLINK_MK)
|
|
SDL_NET_BUILDLINK_MK= # defined
|
|
|
|
.include "../../mk/bsd.buildlink.mk"
|
|
|
|
BUILDLINK_DEPENDS.SDL_net?= SDL_net>=1.2.0
|
|
DEPENDS+= ${BUILDLINK_DEPENDS.SDL_net}:../../net/SDL_net
|
|
|
|
BUILDLINK_PREFIX.SDL_net= ${LOCALBASE}
|
|
BUILDLINK_FILES.SDL_net= include/SDL/SDL_net.h
|
|
BUILDLINK_FILES.SDL_net+= lib/libSDL_net-*
|
|
BUILDLINK_FILES.SDL_net+= lib/libSDL_net.*
|
|
|
|
.include "../../devel/SDL/buildlink.mk"
|
|
|
|
BUILDLINK_TARGETS.SDL_net= SDL_net-buildlink
|
|
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.SDL_net}
|
|
|
|
pre-configure: ${BUILDLINK_TARGETS.SDL_net}
|
|
SDL_net-buildlink: _BUILDLINK_USE
|
|
|
|
.endif # SDL_NET_BUILDLINK_MK
|