Skip to content

Commit

Permalink
U3 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
siara-cc committed Apr 9, 2024
1 parent ca7c8f3 commit f17d9b3
Show file tree
Hide file tree
Showing 6 changed files with 2,499 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Unishox3_Beta/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
SRCFILE = unishox3.cpp
SRCFILE1 = ../test_unishox3_beta.cpp
OUTFILE = ../u3b
COMPILE_OPTS=-O0 -g -I.
# -fsanitize=address

default:
g++ -std=c++11 $(CFLAGS) $(COMPILE_OPTS) -o $(OUTFILE) $(SRCFILE) $(SRCFILE1) -lmarisa

install: default
cp $(OUTFILE) /usr/bin/

clean:
$(RM) $(OUTFILE)
Loading

0 comments on commit f17d9b3

Please sign in to comment.