mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ca5d13cc2a
Prepare for handling pkg state with files. So it requires having the path defined before declaring targets. In addition, it cleans up the old git-download target.
14 lines
437 B
Makefile
14 lines
437 B
Makefile
PKG_NAME=ucglib
|
|
PKG_URL=https://github.com/olikraus/ucglib
|
|
PKG_VERSION=bf48515702dd7c87cbacdd17989738f33f003df2
|
|
PKG_LICENSE=BSD-2-Clause
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
all:
|
|
cp -u src/Makefile $(PKG_BUILDDIR)/Makefile
|
|
cp -u src/csrc/Makefile $(PKG_BUILDDIR)/csrc/Makefile
|
|
cp -u src/csrc/ucg_riotos.c $(PKG_BUILDDIR)/csrc/ucg_riotos.c
|
|
cp -u src/sys/sdl/dev/Makefile $(PKG_BUILDDIR)/sys/sdl/dev/Makefile
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)
|