2013-11-18 12:30:01 +01:00
|
|
|
PKG_NAME= # name of the package
|
2016-03-22 18:32:17 +01:00
|
|
|
PKG_URL= # source url of the package's git repository
|
2013-11-18 12:30:01 +01:00
|
|
|
PKG_VERSION= # version of the package to use e.g. a git commit/ref
|
2020-01-06 00:29:55 +01:00
|
|
|
PKG_LICENSE= # license of the package
|
2013-11-18 12:30:01 +01:00
|
|
|
|
2016-03-22 18:32:17 +01:00
|
|
|
.PHONY: all
|
2013-11-18 12:30:01 +01:00
|
|
|
|
2019-06-27 15:18:37 +02:00
|
|
|
all:
|
2014-07-22 23:59:22 +02:00
|
|
|
$(MAKE) -C $(CURDIR)/$(PKG_NAME)
|
2013-11-18 12:30:01 +01:00
|
|
|
|
2016-03-22 18:32:17 +01:00
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|