source: libcfa/prelude/Makefile.am @ cfbc703d

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since cfbc703d was fb64e86, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

allow pattern for extra function declarations to span multiple lines

  • Property mode set to 100644
File size: 3.0 KB
Line 
1######################## -*- Mode: Makefile-Automake -*- ######################
2##
3## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
4##
5## The contents of this file are covered under the licence agreement in the
6## file "LICENCE" distributed with Cforall.
7##
8## Makefile.am --
9##
10## Author           : Peter A. Buhr
11## Created On       : Sun May 31 08:54:01 2015
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Mon Feb  3 21:27:18 2020
14## Update Count     : 208
15###############################################################################
16
17# create object files in directory with source files
18AUTOMAKE_OPTIONS = foreign subdir-objects
19ACLOCAL_AMFLAGS  = -I automake
20
21# put into lib for now
22cfalibdir = ${CFA_LIBDIR}
23cfalib_DATA = gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c
24
25CC = @LOCAL_CFACC@
26AM_CFLAGS = -g -Wall -Wno-unused-function -fPIC @ARCH_FLAGS@ @CONFIG_CFLAGS@
27AM_CFAFLAGS = @CONFIG_CFAFLAGS@
28
29$(DEPDIR) :
30        mkdir $(DEPDIR)
31
32$(DEPDIR)/builtins.Po : $(DEPDIR)
33        touch ${@}
34
35# create extra forward types/declarations to reduce inclusion of library files
36extras.cf : ${srcdir}/extras.regx ${srcdir}/extras.c
37        ${AM_V_GEN}gcc ${AM_CFLAGS} -E ${srcdir}/extras.c | grep -f ${srcdir}/extras.regx > extras.cf
38        ${AM_V_GEN}gcc ${AM_CFLAGS} -E ${srcdir}/extras.c | grep -zo -f ${srcdir}/extras.regx2 | tr '\0' '\n' >> extras.cf
39
40# create forward declarations for gcc builtins
41gcc-builtins.cf : gcc-builtins.c ${srcdir}/prototypes.sed
42        ${AM_V_GEN}gcc -I${srcdir} -E -P $< | sed -r -f ${srcdir}/prototypes.sed > $@
43
44gcc-builtins.c : ${srcdir}/builtins.def ${srcdir}/prototypes.awk ${srcdir}/sync-builtins.cf ${srcdir}/prototypes.c
45        ${AM_V_GEN}gcc -I${srcdir} -E ${srcdir}/prototypes.c | awk -f ${srcdir}/prototypes.awk > $@
46
47prelude.cfa : prelude-gen.cc
48        ${AM_V_GEN}${CXX} ${AM_CXXFLAGS} ${CXXFLAGS} ${AM_CFLAGS} ${<} -o prelude-gen -Wall -Wextra -O2 -g -std=c++14
49        @./prelude-gen > $@
50        @rm ./prelude-gen
51
52builtins.def :
53
54prototypes.awk :
55
56# create forward declarations for cfa builtins
57builtins.cf : builtins.c @LOCAL_CFACC@
58        ${AM_V_GEN}gcc ${AM_CFLAGS} -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po -D__cforall
59        ${AM_V_at}sed -i 's/builtins.o/builtins.cf/g' $(DEPDIR)/builtins.Po
60
61include $(DEPDIR)/builtins.Po
62
63bootloader.c : ${srcdir}/bootloader.cf prelude.cfa extras.cf gcc-builtins.cf builtins.cf @CFACPP@
64        ${AM_V_GEN}@CFACPP@ --prelude-dir=${builddir} -tpm ${srcdir}/bootloader.cf $@  # use src/cfa-cpp as not in lib until after install
65
66maintainer-clean-local :
67        rm -rf $(DEPDIR)
68
69MOSTLYCLEANFILES = bootloader.c builtins.cf extras.cf gcc-builtins.c gcc-builtins.cf prelude.cfa
70MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}}
71
72if ENABLE_DISTCC
73distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c $(srcdir)/../../tools/build/push2dist.sh
74        ${AM_V_GEN}$(srcdir)/../../tools/build/push2dist.sh @CFADIR_HASH@
75        @echo "Dummy file to track distribution to remote hosts" > ${@}
76
77all: all-am distribution
78endif ENABLE_DISTCC
Note: See TracBrowser for help on using the repository browser.