Makefile.in 299 B

12345678910
  1. CFLAGS=-I../../include -Wall -Werror -g
  2. all: state_machine
  3. state_machine: state_machine.o
  4. $(CC) -o state_machine state_machine.o -L../.. -lssl -lcrypto
  5. test: state_machine
  6. ./state_machine 10000 ../../apps/server.pem ../../apps/server.pem
  7. # DO NOT DELETE THIS LINE -- make depend depends on it.