aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
blob: 0b0444230b18f795b17f62b3049ab7d8c649e640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS = -Wall -I../include/ -g

LDFLAGS = -lcomfig -L../lib/

.PHONY: all clean

all: test_gprs test_zigbee

test_gprs: test_gprs.c
	$(CC) $(CFLAGS) test_gprs.c -o $@ $(LDFLAGS)

test_zigbee: test_zigbee.c
	$(CC) $(CFLAGS) test_zigbee.c -o $@ $(LDFLAGS)

clean:
	rm test_zigbee test_gprs