-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fx2pipe: checked in original version 0.8 sources
- Loading branch information
Showing
38 changed files
with
15,438 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Author: Wolfgang Wieser |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
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,10 @@ | ||
BUILD INSTRUCTIONS: | ||
|
||
Usual configure && make voodoo. | ||
|
||
The firmware is not built by "make" since this requires special tools. | ||
Instead source code and pre-compiled binaries are distributed. | ||
To build the firmware, run "make" in firmware. | ||
|
||
Volunteers welcome for any type of improvement! | ||
|
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,25 @@ | ||
#CFLAGS = @CFLAGS@ -W -Wall -D_GNU_SOURCE | ||
#CXXFLAGS = @CXXFLAGS@ -W -Wall -D_GNU_SOURCE | ||
|
||
OPTCXXFLAGS = -W -Wall -Wformat -Woverloaded-virtual \ | ||
-O2 -march=i586 -fno-rtti -fno-exceptions -fomit-frame-pointer \ | ||
-D_GNU_SOURCE | ||
OPTCFLAGS = -W -Wall -Wformat \ | ||
-O2 -march=i586 -fomit-frame-pointer \ | ||
-D_GNU_SOURCE | ||
|
||
# Pass ADDFLAGS if you want to set -fmessage-length or the like. | ||
ADDFLAGS="" | ||
|
||
SUBDIRS = lib usb_io fx2pipe | ||
|
||
EXTRA_DIST = oconfig.h firmware | ||
|
||
|
||
opt: FORCE | ||
$(MAKE) CFLAGS="$(OPTCFLAGS) $(ADDFLAGS)" CXXFLAGS="$(OPTCXXFLAGS) $(ADDFLAGS)" all | ||
|
||
checkopt: FORCE | ||
$(MAKE) CFLAGS="$(OPTCFLAGS) $(ADDFLAGS)" CXXFLAGS="$(OPTCXXFLAGS) $(ADDFLAGS)" check | ||
|
||
FORCE: |
Oops, something went wrong.