• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/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 -lcrypto
7
8test: state_machine
9	./state_machine 10000 ../../apps/server.pem ../../apps/server.pem
10