Makefile #1

  • //
  • guest/
  • robert_cowham/
  • openssl/
  • main/
  • demos/
  • bio/
  • Makefile
  • View
  • Commits
  • Open Download .zip Download (274 B)
CC=cc
CFLAGS= -g -I../../include
LIBS= -L../.. ../../libssl.a ../../libcrypto.a
EXAMPLES=saccept sconnect

all: $(EXAMPLES) 

saccept: saccept.o
	$(CC) -o saccept saccept.o $(LIBS)

sconnect: sconnect.o
	$(CC) -o sconnect sconnect.o $(LIBS)

clean:	
	rm -f $(EXAMPLES) *.o

# Change User Description Committed
#1 10711 Robert Cowham OpenSSL 1.0.1i