Skip to content

Commit

Permalink
fx2pipe: checked in original version 0.8 sources
Browse files Browse the repository at this point in the history
  • Loading branch information
hoglet67 committed Nov 25, 2017
1 parent 85e5341 commit 58adf00
Show file tree
Hide file tree
Showing 38 changed files with 15,438 additions and 0 deletions.
1 change: 1 addition & 0 deletions fx2pipe/AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Author: Wolfgang Wieser
340 changes: 340 additions & 0 deletions fx2pipe/COPYING

Large diffs are not rendered by default.

Empty file added fx2pipe/ChangeLog
Empty file.
10 changes: 10 additions & 0 deletions fx2pipe/INSTALL
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!

25 changes: 25 additions & 0 deletions fx2pipe/Makefile.am
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:
Loading

0 comments on commit 58adf00

Please sign in to comment.