summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: a298c07115f7eebb6ca4971883ee7b220140803f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.PHONY: clean run sync test

SOURCE := \
	compatible_devices.c \
	exynos4412_gpios.c  \
	exynos4412_gpios_data.c \
	main.c \
	modem_gpios_data.c \
	tests.c \

run: i9300-modem-pins
	./$<

test: i9300-modem-pins
	./$< test

i9300-modem-pins: $(SOURCE)
	$(CC) $^ -o $@

clean:
	rm -f i9300-modem-pins

sync: clean
	rsync -av $$PWD u-boot-i9300-local: