-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from AKuHAK/test
Improvements
- Loading branch information
Showing
6 changed files
with
445 additions
and
74 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 |
---|---|---|
|
@@ -332,3 +332,10 @@ ASALocalRun/ | |
|
||
build/ | ||
.* | ||
*.kelf | ||
*.xlf | ||
*.elf | ||
*.KELF | ||
*.XLF | ||
*.ELF | ||
PS2KEYS.dat |
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 |
---|---|---|
|
@@ -12,7 +12,10 @@ CXXFLAGS = --std=c++17 | |
LDLIBS = -lcrypto | ||
|
||
# next flags only for macos | ||
OUTPUT_OPTION = -I/usr/local/opt/[email protected]/include | ||
# change paths to your location of [email protected] | ||
# OUTPUT_OPTION += -I$(HOME)/usr/local/Cellar/[email protected]/1.1.1m/include | ||
# LDLIBS += -L$(HOME)/usr/local/Cellar/[email protected]/1.1.1m/lib | ||
OUTPUT_OPTION += -I/usr/local/opt/[email protected]/include | ||
LDLIBS += -L/usr/local/opt/[email protected]/lib | ||
|
||
objects = $(patsubst $(dir_source)/%.cpp, $(dir_build)/%.o, \ | ||
|
Oops, something went wrong.