f6a49e5a3f
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
12 lines
169 B
Makefile
12 lines
169 B
Makefile
CC = $(CROSS_COMPILE)gcc
|
|
CFLAGS += -O2 -Wall -g -D_GNU_SOURCE
|
|
|
|
all: lsgpio
|
|
|
|
lsgpio: lsgpio.o gpio-utils.o
|
|
|
|
%.o: %.c gpio-utils.h
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.o lsgpio
|