Makefile #1

  • //
  • guest/
  • robert_cowham/
  • openssl/
  • main/
  • demos/
  • sign/
  • Makefile
  • View
  • Commits
  • Open Download .zip Download (191 B)
CC=cc
CFLAGS= -g -I../../include -Wall
LIBS=  -L../.. -lcrypto
EXAMPLES=sign

all: $(EXAMPLES) 

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

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

test: all
	./sign
# Change User Description Committed
#1 10711 Robert Cowham OpenSSL 1.0.1i