blob: 75aa907e6ef373ea4b042b56171fa7b214672aa8 (
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
32
|
# 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:= 1
PKG_DESCR:= small 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
# please remove ALL above comments, before commiting
include ${TOPDIR}/mk/pkg-bottom.mk
|