ee6d9f4eb6
Remove lint, tags, dclean, tests. This is prep for a new makedepend scheme. This is temporary pending unified makefile, and might help it. Reviewed-by: Richard Levitte <levitte@openssl.org>
16 lines
247 B
Makefile
16 lines
247 B
Makefile
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
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|