[375a068] | 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 : Wed Dec 14 15:00:35 2016
|
---|
| 14 | ## Update Count : 205
|
---|
| 15 | ###############################################################################
|
---|
| 16 |
|
---|
| 17 | # create object files in directory with source files
|
---|
[0c1b566] | 18 | AUTOMAKE_OPTIONS = foreign subdir-objects
|
---|
[375a068] | 19 |
|
---|
| 20 | # put into lib for now
|
---|
[088a5cd] | 21 | cfalibdir = ${CFA_LIBDIR}
|
---|
[e523b07] | 22 | cfalib_DATA = gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c
|
---|
[375a068] | 23 |
|
---|
[50697b0] | 24 | CC = @CFACC@
|
---|
[575a6e5] | 25 | AM_CFLAGS = -g -Wall -Wno-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@
|
---|
| 26 | AM_CFAFLAGS = @CONFIG_CFAFLAGS@
|
---|
[307a732] | 27 |
|
---|
[8c680e9] | 28 | $(DEPDIR) :
|
---|
| 29 | mkdir $(DEPDIR)
|
---|
| 30 |
|
---|
| 31 | $(DEPDIR)/builtins.Po : $(DEPDIR)
|
---|
| 32 | touch ${@}
|
---|
| 33 |
|
---|
[375a068] | 34 | # create extra forward types/declarations to reduce inclusion of library files
|
---|
[e9546f9] | 35 | extras.cf : ${srcdir}/extras.regx ${srcdir}/extras.c
|
---|
[37fe352] | 36 | ${AM_V_GEN}gcc ${AM_CFLAGS} -E ${srcdir}/extras.c | grep -f ${srcdir}/extras.regx > extras.cf
|
---|
[375a068] | 37 |
|
---|
| 38 | # create forward declarations for gcc builtins
|
---|
[e9546f9] | 39 | gcc-builtins.cf : gcc-builtins.c ${srcdir}/prototypes.sed
|
---|
[ff1e0f38] | 40 | ${AM_V_GEN}gcc -I${srcdir} -E -P $< | sed -r -f ${srcdir}/prototypes.sed > $@
|
---|
[375a068] | 41 |
|
---|
[e9546f9] | 42 | gcc-builtins.c : ${srcdir}/builtins.def ${srcdir}/prototypes.awk ${srcdir}/sync-builtins.cf ${srcdir}/prototypes.c
|
---|
[ff1e0f38] | 43 | ${AM_V_GEN}gcc -I${srcdir} -E ${srcdir}/prototypes.c | awk -f ${srcdir}/prototypes.awk > $@
|
---|
[375a068] | 44 |
|
---|
[e523b07] | 45 | prelude.cfa : prelude-gen.cc
|
---|
[37fe352] | 46 | ${AM_V_GEN}${CXX} ${AM_CXXFLAGS} ${CXXFLAGS} ${AM_CFLAGS} ${<} -o prelude-gen -Wall -Wextra -O2 -g -std=c++14
|
---|
[1d386a7] | 47 | @./prelude-gen > $@
|
---|
| 48 | @rm ./prelude-gen
|
---|
| 49 |
|
---|
[375a068] | 50 | builtins.def :
|
---|
| 51 |
|
---|
| 52 | prototypes.awk :
|
---|
| 53 |
|
---|
[807ce84] | 54 | # create forward declarations for cfa builtins
|
---|
[307a732] | 55 | builtins.cf : builtins.c ${CC}
|
---|
[37fe352] | 56 | ${AM_V_GEN}gcc ${AM_CFLAGS} -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po
|
---|
[8c680e9] | 57 | ${AM_V_at}sed -i 's/builtins.o/builtins.cf/g' $(DEPDIR)/builtins.Po
|
---|
| 58 |
|
---|
| 59 | include $(DEPDIR)/builtins.Po
|
---|
[807ce84] | 60 |
|
---|
[e523b07] | 61 | bootloader.c : ${srcdir}/bootloader.cf prelude.cfa extras.cf gcc-builtins.cf builtins.cf @CFACPP@
|
---|
[4dcaed2] | 62 | ${AM_V_GEN}@CFACPP@ --prelude-dir=${builddir} -tpm ${srcdir}/bootloader.cf $@ # use src/cfa-cpp as not in lib until after install
|
---|
[375a068] | 63 |
|
---|
[8c680e9] | 64 | maintainer-clean-local :
|
---|
| 65 | rm -rf $(DEPDIR)
|
---|
| 66 |
|
---|
[e523b07] | 67 | MOSTLYCLEANFILES = bootloader.c builtins.cf extras.cf gcc-builtins.c gcc-builtins.cf prelude.cfa
|
---|
[37fe352] | 68 | MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}}
|
---|