blob: 6b254a7fa9aa9fec42e9009a49ede3881b2ec469 (
plain) (
tree)
|
|
APPLICATION ?= cc20rng
SRCDIR = src/$(APPLICATION)
all: target
world: target
target:
make -C $(SRCDIR)
flash-target:
make -C $(SRCDIR) flash-target
clean:
make -C $(SRCDIR) clean
really-clean:
make -C $(SRCDIR) really-clean
|