Files
linux-stable-mirror/tools/gpio/Makefile
T
2016-03-31 11:50:21 +02:00

13 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