Blame view

RIOT/pkg/Makefile.git 253 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
  PKG_NAME=		# name of the package
  PKG_URL=		# source url of the package's git repository
  PKG_VERSION=	# version of the package to use e.g. a git commit/ref
  
  .PHONY: all
  
  all: git-download
  	$(MAKE) -C $(CURDIR)/$(PKG_NAME)
  
  include $(RIOTBASE)/pkg/pkg.mk