]> git.ipfire.org Git - thirdparty/gcc.git/blob - libcody/Makefile.in
configure: Implement --enable-host-pie
[thirdparty/gcc.git] / libcody / Makefile.in
1 # Nathan's generic Makefile -*- mode:Makefile -*-
2 # Copyright (C) 2019-2020 Nathan Sidwell, nathan@acm.org
3 # License: Apache v2.0
4
5 srcdir := @srcdir@
6 prefix := @prefix@
7 exec_prefix := @exec_prefix@
8 bindir := @bindir@
9 libdir := @libdir@
10 includedir := @includedir@
11 # Linker options
12 LDFLAGS := @LDFLAGS@
13 LIBS := @LIBS@
14
15 # We have to place the -I paths last, so that building will see -I paths to us
16 CXX := $(filter-out -I%,@CXX@)
17 AR := @AR@
18 RANLIB := @RANLIB@
19 INSTALL := $(srcdir)/build-aux/install-sh
20
21 # C++ compiler options
22 CXXFLAGS := @CXXFLAGS@
23 CXXINC := $(filter -I%,@CXX@)
24 CXXOPTS := $(CXXFLAGS) @PICFLAG@
25
26 ifneq (@EXCEPTIONS@,yes)
27 CXXOPTS += -fno-exceptions -fno-rtti
28 endif
29
30 # Config
31 CXXOPTS += $(filter-out -DHAVE_CONFIG_H,@DEFS@) -include config.h
32
33 # Linker options
34 LDFLAGS := @LDFLAGS@ @LD_PICFLAG@
35 LIBS := @LIBS@
36
37 # Per-source & per-directory compile flags (warning: recursive)
38 SRC_CXXFLAGS = $(CXXFLAGS$(patsubst $(srcdir)%,%,$1)) \
39 $(if $(filter-out $(srcdir)/,$1),\
40 $(call $0,$(dir $(patsubst %/,%,$1))))
41
42 ifneq ($(MAINTAINER),)
43 override MAINTAINER += $1
44 endif
45 ifeq (@MAINTAINER@,yes)
46 MAINTAINER = $2
47 else
48 MAINTAINER = \# --enable-maintainer-mode to rebuild $1, or make MAINTAINER=touch
49 endif
50
51 vpath %.in $(srcdir)
52 vpath %.cc $(srcdir)
53
54 .SUFFIXES: .o .cc
55
56 %.o: %.cc
57 @mkdir -p $(dir $@)
58 $(CXX) $(strip $(CXXOPTS) $(call SRC_CXXFLAGS,$<) $(CXXINC)) \
59 -MMD -MP -MF ${@:.o=.d} -c -o $@ $<
60
61 all:: Makefile
62
63 mostlyclean::
64
65 clean:: Makefile
66
67 # FIXME: Delete
68 revision.stamp: $(srcdir)/.
69 @revision=`git -C $(srcdir) rev-parse HEAD 2>/dev/null` ;\
70 if test -n "$$revision" ;\
71 then revision=git-$$revision ;\
72 if git -C $(srcdir) status --porcelain 2>/dev/null | grep -vq '^ ' ;\
73 then revision=$${revision}M ;\
74 fi ;\
75 else revision=unknown ;\
76 fi ;\
77 echo $$revision > $@
78
79 revision: revision.stamp
80 @cmp -s $< $@ || cp -f $< $@
81
82 mostlyclean::
83
84 clean:: mostlyclean
85 rm -f revision.stamp revision
86
87 distclean:: clean
88 rm -f config.log config.status
89
90 $(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/config.m4
91 $(call MAINTAINER,$@,cd $(@D) && autoconf -W all,error)
92
93 $(srcdir)/config.h.in: $(srcdir)/configure.ac $(srcdir)/config.m4
94 $(call MAINTAINER,$@,cd $(@D) && autoheader -f -W all,error)
95
96 config.h: config.status config.h.in
97 ./$< --header=$@
98 touch $@
99
100 ifeq ($(filter %clean,$(MAKECMDGOALS)),)
101 Makefile: config.status Makefile.in
102 ./$< --file=$@
103 touch $@
104 endif
105
106 config.status: $(srcdir)/configure $(srcdir)/config.h.in
107 if test -x $@; then ./$@ -recheck; else $< @configure_args@; fi
108
109 mostlyclean::
110
111 clean:: mostlyclean
112 rm -f $(shell find $(srcdir) -name '*~')
113
114 distclean:: clean
115 rm -f config.h
116
117 maintainer-clean:: distclean
118 rm -f $(srcdir)/config.h.in
119
120 .PHONY: all check clean distclean maintainer-clean mostlyclean
121
122 CXXFLAGS/ := -I$(srcdir)
123 LIBCODY.O := buffer.o client.o fatal.o netclient.o netserver.o \
124 resolver.o packet.o server.o
125
126 all:: libcody.a
127
128 libcody.a: $(LIBCODY.O)
129 $(AR) -cr $@ $^
130 $(RANLIB) $@
131
132 mostlyclean::
133
134 clean:: mostlyclean
135 rm -f $(LIBCODY.O) $(LIBCODY.O:.o=.d)
136 rm -f libcody.a
137
138 CXXFLAGS/fatal.cc = -DSRCDIR='"$(srcdir)"'
139
140 fatal.o: Makefile revision
141
142 install::
143 $(INSTALL) -d $(libdir) $(includedir)
144 $(INSTALL) libcody.a $(libdir)
145 $(INSTALL) $(srcdir)/cody.hh $(includedir)
146
147 ifeq ($(filter clean%,$(MAKECMDGOALS)),)
148 -include $(LIBCODY.O:.o=.d)
149 endif