Blame view

tools/usb/Makefile 229 Bytes
4f22ce704   Davidlohr Bueso   USB: tools: Add a...
1
2
3
4
5
6
7
8
9
10
11
12
13
  # Makefile for USB tools
  
  CC = $(CROSS_COMPILE)gcc
  PTHREAD_LIBS = -lpthread
  WARNINGS = -Wall -Wextra
  CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS)
  
  all: testusb ffs-test
  %: %.c
  	$(CC) $(CFLAGS) -o $@ $^
  
  clean:
  	$(RM) testusb ffs-test