blob: 1e6dfcfc37780c88612a3242917b7ee1dc72a110 (
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
|