Skip to content

Commit

Permalink
Initial commit of the RedFat project
Browse files Browse the repository at this point in the history
  • Loading branch information
GJDuck committed Mar 17, 2022
0 parents commit 47e63db
Show file tree
Hide file tree
Showing 11 changed files with 5,480 additions and 0 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
CXX=g++
CXXFLAGS=-std=c++11

redfat.bin: redfat.bin.cpp
$(CXX) $(CXXFLAGS) -o redfat.bin -O2 redfat.bin.cpp
strip redfat.bin

RedFatPlugin.so: RedFatPlugin.cpp
$(CXX) $(CXXFLAGS) -fPIC -shared -o RedFatPlugin.so RedFatPlugin.cpp \
-I E9PATCH/src/e9tool/ -O2
strip RedFatPlugin.so

redfat-rt: redfat-rt.cpp
E9PATCH/e9compile.sh redfat-rt.cpp -std=c++11 -I runtime/ \
-I E9PATCH/src/e9patch/ -I E9PATCH/examples/ -Os -fno-exceptions

clean:
rm -f redfat.bin RedFatPlugin.so redfat-rt e9patch e9tool

Loading

0 comments on commit 47e63db

Please sign in to comment.