• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl-1.0.0q/demos/state_machine/
1CFLAGS=-I../../include -Wall -Werror -g
2
3all: state_machine
4
5state_machine: state_machine.o
6	$(CC) -o state_machine state_machine.o -L../.. -lssl-1.0.0q -lcrypto-1.0.0q
7
8test: state_machine
9	./state_machine 10000 ../../apps/server.pem ../../apps/server.pem
10