Makefile.in 966 B

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