MicroAPRS/bertos/net/nmeap/Makefile

24 lines
318 B
Makefile
Raw Normal View History

2014-04-03 14:21:37 -06:00
# rules
export CC=gcc
export CDEFS = -DNDEBUG
# directories
BASE :=$(shell pwd)
export SRC=$(BASE)/src
export TST=$(BASE)/tst
export INC=$(BASE)/inc
export LIB=$(BASE)/lib
all :
cd $(SRC) && $(MAKE) all
cd $(TST) && $(MAKE) all
clean :
cd $(SRC) && $(MAKE) clean
cd $(TST) && $(MAKE) clean
doc :
doxygen