mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 00:29:50 +00:00
13 lines
165 B
Makefile
13 lines
165 B
Makefile
|
CC = $(CROSS_COMPILE)gcc
|
||
|
CFLAGS += -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
|