Skip to content

Commit

Permalink
Add example for Tongsuo 8.4 and master
Browse files Browse the repository at this point in the history
  • Loading branch information
InfoHunter committed Jan 24, 2024
1 parent f0db8bc commit a64ce18
Show file tree
Hide file tree
Showing 2 changed files with 482 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples/perf/ts84/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CC=gcc
CFLAGS=-I/Users/Paul/work/tmp/tongsuo/include
LDFLAGS=-L/Users/Paul/work/tmp/tongsuo/lib

%.o: %.c
$(CC) -c -o $@ $< $(CFLAGS) -O2

perf: perf.o
$(CC) -o perf perf.o -lcrypto $(LDFLAGS)

clean:
rm -rf *.o perf
Loading

0 comments on commit a64ce18

Please sign in to comment.