Makefile.in 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #
  2. # OpenSSL/crypto/kdf/Makefile
  3. #
  4. DIR= kdf
  5. TOP= ../..
  6. CC= cc
  7. INCLUDES=
  8. CFLAG=-g
  9. MAKEFILE= Makefile
  10. AR= ar r
  11. CFLAGS= $(INCLUDES) $(CFLAG)
  12. GENERAL=Makefile
  13. LIB=$(TOP)/libcrypto.a
  14. LIBSRC=tls1_prf.c
  15. LIBOBJ=tls1_prf.o
  16. SRC= $(LIBSRC)
  17. HEADER=
  18. ALL= $(GENERAL) $(SRC) $(HEADER)
  19. top:
  20. (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
  21. all: lib
  22. lib: $(LIBOBJ)
  23. $(AR) $(LIB) $(LIBOBJ)
  24. $(RANLIB) $(LIB) || echo Never mind.
  25. @touch lib
  26. files:
  27. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  28. tags:
  29. ctags $(SRC)
  30. tests:
  31. lint:
  32. lint -DLINT $(INCLUDES) $(SRC)>fluff
  33. update: depend
  34. depend:
  35. @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
  36. $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  37. clean:
  38. rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  39. # DO NOT DELETE THIS LINE -- make depend depends on it.