mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
9ad7860450
This reverts commit f2af74123f
.
There is a better fix for this build error coming in a following
patch.
Signed-of-by: Felipe Balbi <balbi@ti.com>
15 lines
263 B
Makefile
15 lines
263 B
Makefile
# Makefile for USB tools
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
PTHREAD_LIBS = -lpthread
|
|
WARNINGS = -Wall -Wextra
|
|
CFLAGS = $(WARNINGS) -g -I../include
|
|
LDFLAGS = $(PTHREAD_LIBS)
|
|
|
|
all: testusb ffs-test
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) testusb ffs-test
|