Revert "Merge branch 'upstream' into tizen"
[platform/upstream/nettle.git] / config.make.in
1 # Makefile settings shared between Makefiles.
2
3 CC = @CC@
4 CXX = @CXX@
5 CFLAGS = @CFLAGS@
6 CXXFLAGS = @CXXFLAGS@
7 CCPIC = @CCPIC@
8 CCPIC_MAYBE = @CCPIC_MAYBE@
9 CPPFLAGS = @CPPFLAGS@
10 DEFS = @DEFS@
11 LDFLAGS = @LDFLAGS@
12 LIBS = @LIBS@
13 LIBOBJS = @LIBOBJS@
14 EMULATOR = @EMULATOR@
15 NM = @NM@
16
17 OBJEXT = @OBJEXT@
18 EXEEXT = @EXEEXT@
19
20 CC_FOR_BUILD = @CC_FOR_BUILD@
21 EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
22
23 DEP_FLAGS = @DEP_FLAGS@
24 DEP_PROCESS = @DEP_PROCESS@
25
26 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
27 PACKAGE_NAME = @PACKAGE_NAME@
28 PACKAGE_STRING = @PACKAGE_STRING@
29 PACKAGE_TARNAME = @PACKAGE_TARNAME@
30 PACKAGE_VERSION = @PACKAGE_VERSION@
31
32 SHLIBCFLAGS = @SHLIBCFLAGS@
33
34 LIBNETTLE_MAJOR = @LIBNETTLE_MAJOR@
35 LIBNETTLE_MINOR = @LIBNETTLE_MINOR@
36 LIBNETTLE_SONAME = @LIBNETTLE_SONAME@
37 LIBNETTLE_FILE = @LIBNETTLE_FILE@
38 LIBNETTLE_FILE_SRC = @LIBNETTLE_FILE_SRC@
39 LIBNETTLE_FORLINK = @LIBNETTLE_FORLINK@
40 LIBNETTLE_LIBS = @LIBNETTLE_LIBS@
41 LIBNETTLE_LINK = @LIBNETTLE_LINK@
42
43 LIBHOGWEED_MAJOR = @LIBHOGWEED_MAJOR@
44 LIBHOGWEED_MINOR = @LIBHOGWEED_MINOR@
45 LIBHOGWEED_SONAME = @LIBHOGWEED_SONAME@
46 LIBHOGWEED_FILE = @LIBHOGWEED_FILE@
47 LIBHOGWEED_FILE_SRC = @LIBHOGWEED_FILE_SRC@
48 LIBHOGWEED_FORLINK = @LIBHOGWEED_FORLINK@
49 LIBHOGWEED_LIBS = @LIBHOGWEED_LIBS@
50 LIBHOGWEED_LINK = @LIBHOGWEED_LINK@
51
52 GMP_NUMB_BITS = @GMP_NUMB_BITS@
53
54 AR = @AR@
55 ARFLAGS = cru
56 AUTOCONF = autoconf
57 AUTOHEADER = autoheader
58 M4 = @M4@
59 MAKEINFO = makeinfo
60 RANLIB = @RANLIB@
61 LN_S = @LN_S@
62
63 prefix  =       @prefix@
64 exec_prefix =   @exec_prefix@
65 datarootdir =   @datarootdir@
66 bindir =        @bindir@
67 libdir =        @libdir@
68 includedir =    @includedir@
69 infodir =       @infodir@
70
71 # PRE_CPPFLAGS and PRE_LDFLAGS lets each Makefile.in prepend its own
72 # flags before CPPFLAGS and LDFLAGS.
73
74 COMPILE = $(CC) $(PRE_CPPFLAGS) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CCPIC) $(DEP_FLAGS)
75 COMPILE_CXX = $(CXX) $(PRE_CPPFLAGS) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(CCPIC) $(DEP_FLAGS)
76 LINK = $(CC) $(CFLAGS) $(PRE_LDFLAGS) $(LDFLAGS)
77 LINK_CXX = $(CXX) $(CXXFLAGS) $(PRE_LDFLAGS) $(LDFLAGS)
78
79 # Default rule. Must be here, since config.make is included before the
80 # usual targets.
81 default: all
82
83 # For some reason the suffixes list must be set before the rules.
84 # Otherwise BSD make won't build binaries e.g. aesdata. On the other
85 # hand, AIX make has the opposite idiosyncrasies to BSD, and the AIX
86 # compile was broken when .SUFFIXES was moved here from Makefile.in.
87
88 .SUFFIXES:
89 .SUFFIXES: .asm .s .c .$(OBJEXT) .p$(OBJEXT) .html .dvi .info .exe .pdf .ps .texinfo
90
91 # Disable builtin rule
92 %$(EXEEXT) : %.c
93 .c:
94
95 # Keep object files
96 .PRECIOUS: %.o
97
98 .PHONY: all check install uninstall clean distclean mostlyclean maintainer-clean distdir \
99         all-here check-here install-here clean-here distclean-here mostlyclean-here \
100         maintainer-clean-here distdir-here \
101         install-shared install-info install-headers \
102         uninstall-shared uninstall-info uninstall-headers \
103         dist distcleancheck