Damian Gabino / picoGW_packet_forwarder

Makefile

Committer:
dgabino
Date:
2018-04-11
Revision:
0:9002b89157da

File content as of revision 0:9002b89157da:

### Environment constants 

LGW_PATH ?= ../../picoGW_hal/libloragw
ARCH ?=
CROSS_COMPILE ?=
export

### general build targets

all:
	$(MAKE) all -e -C lora_pkt_fwd
	$(MAKE) all -e -C util_ack
	$(MAKE) all -e -C util_sink
	$(MAKE) all -e -C util_tx_test

clean:
	$(MAKE) clean -e -C lora_pkt_fwd
	$(MAKE) clean -e -C util_ack
	$(MAKE) clean -e -C util_sink
	$(MAKE) clean -e -C util_tx_test

### EOF