mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-11 07:39:47 +00:00
9ad7860450
This reverts commit f2af74123f8c5a735248547f4286a3adc28633c1. 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
|