summaryrefslogtreecommitdiff
path: root/package/uvd/Makefile
blob: 92a6b07a288d73f7bc5e279f892771350640365e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include $(TOPDIR)/rules.mk

PKG_NAME:=		uvd
PKG_VERSION:=		0.1
PKG_RELEASE:=		2
PKG_DESCR:=		udp server for version information
PKG_SECTION:=		base
PKG_URL:=		http://www.openadk.org

NO_DISTFILES:=		1

include $(TOPDIR)/mk/package.mk

$(eval $(call PKG_template,UVD,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))

CONFIG_STYLE:=		manual
BUILD_STYLE:=		manual
INSTALL_STYLE:=		manual

do-build:
	${TARGET_CC} -Wall ${TCPPFLAGS} ${TCFLAGS} \
		-o ${WRKBUILD}/uvd ${WRKBUILD}/uvd.c

do-install:
	${INSTALL_DIR} ${IDIR_UVD}/sbin
	${INSTALL_BIN} ${WRKBUILD}/uvd ${IDIR_UVD}/sbin

include ${TOPDIR}/mk/pkg-bottom.mk