-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.in
594 lines (443 loc) · 18.3 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
#=========================================================================
# Toplevel Makefile for the Modular C++ Build System
#=========================================================================
# Please read the documenation in 'mcppbs-doc.txt' for more details on
# how the Modular C++ Build System works. For most projects, a developer
# will not need to make any changes to this makefile. The key targets
# are as follows:
#
# - default : build all libraries and programs
# - check : build and run all unit tests
# - install : install headers, project library, and some programs
# - clean : remove all generated content (except autoconf files)
# - dist : make a source tarball
# - distcheck : make a source tarball, untar it, check it, clean it
# - distclean : remove everything
#
#-------------------------------------------------------------------------
# Basic setup
#-------------------------------------------------------------------------
# Remove all default implicit rules since they can cause subtle bugs
# and they just make things run slower
.SUFFIXES:
% : %,v
% : RCS/%,v
% : RCS/%
% : s.%
% : SCCS/s.%
# Default is to build the prereqs of the all target (defined at bottom)
default : all
.PHONY : default
project_name := @PACKAGE_TARNAME@
src_dir := @srcdir@
abs_src_dir := @abs_srcdir@
scripts_dir := $(src_dir)/scripts
# If the version information is not in the configure script, then we
# assume that we are in a working directory. We use the vcs-version
# script in the scripts directory to generate an appropriate version
# string. Currently the way things are setup we have to run this script
# everytime we run make so the script needs to be as fast as possible.
ifeq (@PACKAGE_VERSION@,?)
project_ver:=$(shell $(scripts_dir)/vcs-version $(src_dir))
else
project_ver:=@PACKAGE_VERSION@
endif
#-------------------------------------------------------------------------
# vpath
#-------------------------------------------------------------------------
# VPATH is used for a list of directories to search for _all_ sources.
# Since we now prefix everything with the subproject name (i.e., we use
# utst/TestLog.cc not utst-TestLog.cc in the make variables) we end up
# with a tricky situation. We want to use an order-only prequisite to
# ensure that the subproject build directory is always created first:
#
# http://www.gnu.org/savannah-checkouts/gnu/make/manual/html_node/Prerequisite-Types.html#Prerequisite-Types
#
# but if we combine this with VPATH then make sees the _source_
# subproject directory and things it is up to date. So the solution is to
# use vpath instead of VPATH so we can explicitly say which files should
# be searched for where.
vpath %.cc $(src_dir)
vpath %.h $(src_dir)
vpath %.inl $(src_dir)
vpath %.tcl $(src_dir)
#-------------------------------------------------------------------------
# Installation directory setup
#-------------------------------------------------------------------------
prefix := @prefix@
enable_stow := @enable_stow@
ifeq ($(enable_stow),yes)
stow_pkg_dir := $(prefix)/pkgs
DESTDIR ?= $(stow_pkg_dir)/$(project_name)-$(project_ver)
else
DESTDIR ?= $(prefix)
endif
install_hdrs_dir := $(DESTDIR)/include
install_libs_dir := $(DESTDIR)/lib
install_pkcs_dir := $(DESTDIR)/share/pkgconfig
install_exes_dir := $(DESTDIR)/bin
#-------------------------------------------------------------------------
# Programs and flags
#-------------------------------------------------------------------------
# Standard flags
# - CPPFLAGS : flags for the preprocessor (eg. -I,-D)
# - CFLAGS : flags for C compiler (eg. -Wall,-g,-O3)
# - CXXFLAGS : flags for C++ compiler (eg. -Wall,-g,-O3)
# - LDFLAGS : flags for the linker (eg. -L)
CPPFLAGS := @CPPFLAGS@
CFLAGS := @CFLAGS@
CXXFLAGS := @CXXFLAGS@
LDFLAGS := @LDFLAGS@
# C compiler and linker
CC := @CC@
COMPILE_C := $(CC) $(CFLAGS) -MMD -MP -I. -I$(src_dir) $(CPPFLAGS)
LD_C := $(CC)
LINK_C := $(LD_C) -L. $(LDFLAGS)
# C++ compiler and linker
CXX := @CXX@
COMPILE_CXX := $(CXX) $(CXXFLAGS) -MMD -MP -I. -I$(src_dir) $(CPPFLAGS)
LD_CXX := $(CXX)
LINK_CXX := $(LD_CXX) -L. $(LDFLAGS)
# Library creation
AR := @AR@
RANLIB := @RANLIB@
# Host simulator
RUN := @RUN@
RUNFLAGS := @RUNFLAGS@
# High-level synthesis
HLS := @HLS@
# Installation
MKINSTALLDIRS := $(scripts_dir)/mk-install-dirs
INSTALL := @INSTALL@
INSTALL_HDR := $(INSTALL) -m 444
INSTALL_LIB := $(INSTALL) -m 644
INSTALL_EXE := $(INSTALL) -m 555
STOW := @stow@
#-------------------------------------------------------------------------
# Setup subproject lists and include makefile fragments
#-------------------------------------------------------------------------
sprojs_internal := @mcppbs_include_internal@
sprojs_internal_en := @mcppbs_include_internal_en@
sprojs_install := @mcppbs_install@
sprojs_mk := $(join $(sprojs_internal_en), $(patsubst %,/%.mk, $(sprojs_internal_en)))
-include $(sprojs_mk)
# The utst subproject is special since the makefile explicitly uses the
# utst compiler and linking flags when building unit tests. If we are
# using a globally installed utst library then the utst make variables
# will not have been set in the utst make fragment. So we set them here
# (from the configure script) if they were not set in the make fragment.
utst_cppflags ?= @utst_cppflags@
utst_ldflags ?= @utst_ldflags@
utst_libs ?= @utst_libs@
#-------------------------------------------------------------------------
# Template for per subproject rules
#-------------------------------------------------------------------------
# The template is instantiated for each of the subprojects. It relies on
# subprojects defining a certain set of make variables which are all
# prefixed with the subproject name. Since subproject names can have
# dashes in them (and the make variables are assumed to only use
# underscores) the template takes two arguments - one with the regular
# subproject name and one with dashes replaced with underscores.
#
# Arguments:
# $(1) : real subproject name (ie with dashes)
# $(2) : normalized subproject name (ie dashes replaced with underscores)
#
define subproject_template
# In some (rare) cases, a subproject might not have any actual object
# files. It might only include header files or program sources. To keep
# things consistent we still want a library for this subproject, so in
# this spectial case we create a dummy source file and thus the build
# system will create a library for this subproject with just the
# corresponding dummy object file.
ifeq ($$(strip $$($(2)_srcs)),)
$(2)_srcs += $(1)/$(1)_.cc
$(2)_junk += $(1)/$(1)_.cc
endif
$(1)/$(1)_.cc :
echo "int $(2)_( int arg ) { return arg; }" > $$@
# Build the object files from assembly sources for this subproject
$(2)_asm_srcs := $$(filter %.S, $$($(2)_srcs))
$(2)_asm_objs := $$(patsubst %.S, %.o, $$($(2)_asm_srcs))
$(2)_asm_deps := $$(patsubst %.S, %.d, $$($(2)_asm_srcs))
$$($(2)_asm_objs) : %.o : %.S
$(COMPILE_C) $$($(2)_cppflags) -c -o $$@ $$<
$$($(2)_asm_objs) :| $(1)
$(2)_objs += $$($(2)_asm_objs)
$(2)_deps += $$($(2)_asm_deps)
$(2)_junk += $$($(2)_asm_deps) $$($(2)_asm_objs)
# Build the object files from C sources for this subproject
$(2)_c_srcs := $$(filter %.c, $$($(2)_srcs))
$(2)_c_objs := $$(patsubst %.c, %.o, $$($(2)_c_srcs))
$(2)_c_deps := $$(patsubst %.c, %.d, $$($(2)_c_srcs))
$$($(2)_c_objs) : %.o : %.c
$(COMPILE_C) $$($(2)_cppflags) -c -o $$@ $$<
$$($(2)_c_objs) :| $(1)
$(2)_objs += $$($(2)_c_objs)
$(2)_deps += $$($(2)_c_deps)
$(2)_junk += $$($(2)_c_deps) $$($(2)_c_objs)
# Build the object files from C++ sources for this subproject
$(2)_cxx_srcs := $$(filter %.cc, $$($(2)_srcs))
$(2)_cxx_objs := $$(patsubst %.cc, %.o, $$($(2)_cxx_srcs))
$(2)_cxx_deps := $$(patsubst %.cc, %.d, $$($(2)_cxx_srcs))
$$($(2)_cxx_objs) : %.o : %.cc
$(COMPILE_CXX) $$($(2)_cppflags) -c -o $$@ $$<
$$($(2)_cxx_objs) :| $(1)
$(2)_objs += $$($(2)_cxx_objs)
$(2)_deps += $$($(2)_cxx_deps)
$(2)_junk += $$($(2)_cxx_deps) $$($(2)_cxx_objs)
# Build a library for this subproject
$(2)_libname = $(1)/lib$(1).a
$$($(2)_libname) : $$($(2)_objs)
$(AR) rcv $$@ $$^
$(RANLIB) $$@
$(2)_junk += $$($(2)_libname)
# Use the list of internal subprojects which this subproject depends on
# to create a list of prerequisite libraries (including this
# subproject's library).
$(2)_intdeps_libnames := $$(join $$($(2)_intdeps), $$(patsubst %, /lib%.a, $$($(2)_intdeps)))
$(2)_link_prereqs := $$($(2)_libname) $$($(2)_intdeps_libnames)
# Build unit tests
$(2)_test_objs := $$(patsubst %.cc, %.o, $$($(2)_test_srcs))
$(2)_test_deps := $$(patsubst %.cc, %.d, $$($(2)_test_srcs))
$(2)_test_exes := $$(patsubst %.t.cc, %-utst, $$($(2)_test_srcs))
$(2)_test_outs := $$(patsubst %, %.out, $$($(2)_test_exes))
$$($(2)_test_objs) : %.o : %.cc
$(COMPILE_CXX) $$($(2)_cppflags) $(utst_cppflags) -c -o $$@ $$<
$$($(2)_test_objs) :| $(1)
$$($(2)_test_exes) : %-utst : %.t.o $$($(2)_link_prereqs) $(utst_libname)
$(LINK_CXX) $$($(2)_ldflags) $(utst_ldflags) -o $$@ $$< \
$$($(2)_libs) $(utst_libs)
$$($(2)_test_exes) :| $(1)
$(2)_deps += $$($(2)_test_deps)
$(2)_junk += \
$$($(2)_test_deps) $$($(2)_test_objs) $$($(2)_test_exes)
# Run unit tests
$$($(2)_test_outs) : %.out : %
$(RUN) $(RUNFLAGS) ./$$< default 2>&1 | tee $$@
$(2)_junk += $$($(2)_test_outs)
# Build C programs
$(2)_prog_c_srcs := $$(filter %.c, $$($(2)_prog_srcs))
$(2)_prog_c_srcs += $$(filter %.c, $$($(2)_install_prog_srcs))
$(2)_prog_c_objs := $$(patsubst %.c, %.o, $$($(2)_prog_c_srcs))
$(2)_prog_c_deps := $$(patsubst %.c, %.d, $$($(2)_prog_c_srcs))
$(2)_prog_c_exes := $$(patsubst %.c, %, $$($(2)_prog_c_srcs))
$$($(2)_prog_c_objs) : %.o : %.c
$(COMPILE_C) $$($(2)_cppflags) -c -o $$@ $$<
$$($(2)_prog_c_objs) :| $(1)
$$($(2)_prog_c_exes) : % : %.o $$($(2)_link_prereqs)
$(LINK_C) $$($(2)_ldflags) -o $$@ $$< $$($(2)_libs)
$$($(2)_prog_c_exes) :| $(1)
$(2)_exes += $$($(2)_prog_c_exes)
$(2)_deps += $$($(2)_prog_c_deps)
$(2)_junk += \
$$($(2)_prog_c_objs) $$($(2)_prog_c_deps) $$($(2)_prog_c_exes)
# Build C++ programs
$(2)_prog_cxx_srcs := $$(filter %.cc, $$($(2)_prog_srcs))
$(2)_prog_cxx_srcs += $$(filter %.cc, $$($(2)_install_prog_srcs))
$(2)_prog_cxx_objs := $$(patsubst %.cc, %.o, $$($(2)_prog_cxx_srcs))
$(2)_prog_cxx_deps := $$(patsubst %.cc, %.d, $$($(2)_prog_cxx_srcs))
$(2)_prog_cxx_exes := $$(patsubst %.cc, %, $$($(2)_prog_cxx_srcs))
$$($(2)_prog_cxx_objs) : %.o : %.cc
$(COMPILE_CXX) $$($(2)_cppflags) -c -o $$@ $$<
$$($(2)_prog_cxx_objs) :| $(1)
$$($(2)_prog_cxx_exes) : % : %.o $$($(2)_link_prereqs)
$(LINK_CXX) $$($(2)_ldflags) -o $$@ $$< $$($(2)_libs)
$$($(2)_prog_cxx_exes) :| $(1)
$(2)_exes += $$($(2)_prog_cxx_exes)
$(2)_deps += $$($(2)_prog_cxx_deps)
$(2)_junk += \
$$($(2)_prog_cxx_objs) $$($(2)_prog_cxx_deps) $$($(2)_prog_cxx_exes)
# Generate Verilog using HLS. Note that we have to be very careful with
# paths, because the VPATH feature mean the prereqs might be either
# absolute or relative paths. So we need to basically create the path to
# the .tcl script from scratch.
$(2)_hls_tcls := $$(patsubst %.cc, %.tcl, $$($(2)_hls_srcs))
$(2)_hls_prjs := $$(patsubst %.cc, %.prj, $$($(2)_hls_srcs))
$(2)_hls_logs := $$(patsubst %.cc, %.log, $$($(2)_hls_srcs))
$(2)_hls_vs := $$(addprefix $(src_dir)/, $$(patsubst %.cc, %.v, $$($(2)_hls_srcs)))
$$($(2)_hls_vs) : %.v : %.tcl %.cc
cd $(1) && $(HLS) $(abs_src_dir)/$(1)/$$(notdir $$*).tcl \
| tee $$(notdir $$*).log
mv $(1)/$$(notdir $$*).v $(src_dir)/$(1)/$$(notdir $$*).v
$$($(2)_hls_vs) :| $(1)
$(2)_vs += $$($(2)_hls_vs)
$(2)_hls_junk += $$($(2)_hls_prjs) $$($(2)_hls_logs) $$($(2)_hls_vs) $(1)/vivado_hls.log
$(2)_junk += $$($(2)_hls_junk)
# Install subproject's header (.h), inline (.inl), source (.cc), and
# package config (.pc) files if this subproject is on the sproj_install
# list.
ifneq ($$(filter $(1),$(sprojs_install)),)
$(2)_install_hdrs_wdir := \
$$(addprefix $$(src_dir)/, $$($(2)_hdrs)) \
$$(addprefix $$(src_dir)/, $$($(2)_inls)) \
$(1)/config.h \
install-libs-$(1) : $$($(2)_install_hdrs_wdir) $$($(2)_libname) $(1)/$(1).pc
$(MKINSTALLDIRS) $(install_hdrs_dir)/$(1) \
$(install_libs_dir) $(install_pkcs_dir)
for file in $$($(2)_install_hdrs_wdir); do \
$(INSTALL_HDR) $$$${file} $(install_hdrs_dir)/$(1); \
done
$(INSTALL_LIB) $$($(2)_libname) $(install_libs_dir)
$(INSTALL_LIB) $(1)/$(1).pc $(install_pkcs_dir)/$(1).pc
install-libs : install-libs-$(1)
.PHONY : install-libs-$(1)
endif
# We always install executables which have been placed in
# sproj_install_prog_exes regardless of whether or not subproject is on
# the sprojs_install list.
$(2)_install_prog_exes = $$(basename $$($(2)_install_prog_srcs))
install-exes-$(1) : $$($(2)_install_prog_exes)
$(MKINSTALLDIRS) $(install_exes_dir)
for file in $$($(2)_install_prog_exes); do \
_exe_basename=`basename $$$$file`; \
$(INSTALL_EXE) $$$${file} $(install_exes_dir)/$(1)-$$$${_exe_basename}; \
done
install-exes : install-exes-$(1)
.PHONY : install-exes-$(1)
# Create subproject subdirectory for build
$(1):
mkdir $(1)
# Other subproject specific targets
all-$(1) : $$($(2)_libname) $$($(2)_prog_exes) $$($(2)_install_prog_exes)
check-$(1) : $$($(2)_test_outs)
$(scripts_dir)/check $$^
hls-$(1) : $$($(2)_hls_vs)
install-$(1) : install-libs-$(1) install-exes-$(1)
clean-$(1) :
rm -rf $$($(2)_junk)
hlsclean-$(1) :
rm -rf $$($(2)_hls_junk)
.PHONY : all-$(1) check-$(1) hls-$(1) install-$(1) clean-$(1) hlsclean-$(1)
# Update running variables
libs += $$($(2)_libname)
objs += $$($(2)_objs)
exes += $$($(2)_exes)
outs += $$($(2)_test_outs)
junk += $$($(2)_junk)
deps += $$($(2)_deps)
hls_vs += $$($(2)_hls_vs)
hls_junk += $$($(2)_hls_junk)
endef
# Call template for each enabled internal subproject
$(foreach sproj,$(sprojs_internal_en), \
$(eval $(call subproject_template,$(sproj),$(subst -,_,$(sproj)))))
#-------------------------------------------------------------------------
# Autodependency files
#-------------------------------------------------------------------------
-include $(deps)
deps : $(deps)
.PHONY : deps
#-------------------------------------------------------------------------
# Check
#-------------------------------------------------------------------------
check : $(outs)
$(scripts_dir)/check $^
.PHONY : check
#-------------------------------------------------------------------------
# HLS
#-------------------------------------------------------------------------
hls : $(hls_vs)
.PHONY : hls
#-------------------------------------------------------------------------
# Installation
#-------------------------------------------------------------------------
install : install-libs install-exes
ifeq ($(enable_stow),yes)
$(MKINSTALLDIRS) $(stow_pkg_dir)
cd $(stow_pkg_dir) && \
ls -d $(project_name)-* | xargs -n 1 $(STOW) --delete && \
$(STOW) $(project_name)-$(project_ver)
endif
.PHONY : install install-libs install_exes
#-------------------------------------------------------------------------
# Regenerate configure information
#-------------------------------------------------------------------------
configure_prereq = \
$(src_dir)/configure.ac \
$(src_dir)/aclocal.m4 \
$(join $(addprefix $(src_dir)/, $(sprojs_internal_en)), \
$(patsubst %, /%.ac, $(sprojs_internal_en)))
$(src_dir)/configure : $(configure_prereq)
cd $(src_dir) && autoconf && autoheader
config.status : $(src_dir)/configure
./config.status --recheck
makefile_prereq = \
config.status \
$(src_dir)/Makefile.in \
$(join $(addprefix $(src_dir)/, $(sprojs_internal_en)), \
$(patsubst %, /%.mk.in, $(sprojs_internal_en))) \
$(join $(addprefix $(src_dir)/, $(sprojs_install)), \
$(patsubst %, /%.pc.in, $(sprojs_install))) \
Makefile : $(makefile_prereq)
./config.status
dist_junk += \
config.status Makefile config.log $(sprojs_internal_en)
#-------------------------------------------------------------------------
# Distribution
#-------------------------------------------------------------------------
# The distribution tarball is named project-ver.tar.gz and it includes
# both enabled and disabled subprojects.
dist_files = \
$(sprojs_internal) \
README \
mcppbs-uguide.txt \
scripts \
configure.ac \
aclocal.m4 \
configure \
config.h.in \
Makefile.in \
dist_dir := $(project_name)-$(project_ver)
dist_tgz := $(project_name)-$(project_ver).tar.gz
# Notice that when we make the distribution we rewrite the configure.ac
# script with the current version and we rerun autoconf in the new
# source directory so that the distribution will have the proper version
# information. We also rewrite the "Version : " line in the README.
dist :
rm -rf $(dist_dir)
mkdir $(dist_dir)
tar -C $(src_dir) -cf - $(dist_files) | tar -C $(dist_dir) -xpf -
sed -i.bak 's/^\(# Version :\).*/\1 $(project_ver)/' $(dist_dir)/README
sed -i.bak 's/\( proj_version,\).*/\1 [$(project_ver)])/' $(dist_dir)/configure.ac
cd $(dist_dir) && \
autoconf && autoheader && \
rm -rf autom4te.cache configure.ac.bak README.bak
tar -czvf $(dist_tgz) $(dist_dir)
rm -rf $(dist_dir)
# You can use the distcheck target to try untarring the distribution and
# then running configure, make, make check, and make distclean. A
# "directory is not empty" error means distclean is not removing
# everything.
distcheck : dist
rm -rf $(dist_dir)
tar -xzvf $(dist_tgz)
mkdir -p $(dist_dir)/build
cd $(dist_dir)/build; ../configure; make; make check; make distclean
rm -rf $(dist_dir)
junk += $(project_name)-*.tar.gz
.PHONY : dist distcheck
#-------------------------------------------------------------------------
# Default
#-------------------------------------------------------------------------
all : $(libs) $(exes)
.PHONY : all
#-------------------------------------------------------------------------
# Makefile debugging
#-------------------------------------------------------------------------
# This handy rule will display the contents of any make variable by
# using the target debug-<varname>. So for example, make debug-junk will
# display the contents of the junk variable.
debug-% :
@echo $* = $($*)
#-------------------------------------------------------------------------
# Clean up junk
#-------------------------------------------------------------------------
# We clean up the PyMTL junk as well.
clean :
rm -rf *~ \#* *.v *.cpp *.py *.so obj_dir_* $(junk)
hlsclean :
rm -rf $(hls_junk)
distclean :
rm -rf *~ \#* $(junk) $(dist_junk)
.PHONY : clean hlsclean distclean