-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 235307 b: refs/heads/master c: 4f22ce7 h: refs/heads/master i: 235305: 57e7ea8 235303: 5c76267 v: v3
- Loading branch information
Davidlohr Bueso
authored and
Greg Kroah-Hartman
committed
Feb 17, 2011
1 parent
c54b245
commit d6ccf0e
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 05c3eebd50ad831c462ec264f82a87654d0ee974 | ||
refs/heads/master: 4f22ce7045c16e36d391fdfe331a397d55578493 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |