ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
deferred_resn
demangler
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
with_gc
|
Last change
on this file since 43385ca was c5a8c5b, checked in by Thierry Delisle <tdelisle@…>, 9 years ago |
|
Fixed makefile dependencies by using gcc -imacros flag
|
-
Property mode
set to
100644
|
|
File size:
1.8 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 : Wed Dec 14 15:00:35 2016
|
|---|
| 14 | ## Update Count : 205
|
|---|
| 15 | ###############################################################################
|
|---|
| 16 |
|
|---|
| 17 | # create object files in directory with source files
|
|---|
| 18 | AUTOMAKE_OPTIONS = subdir-objects
|
|---|
| 19 |
|
|---|
| 20 | # put into lib for now
|
|---|
| 21 | cfalibdir = ${libdir}
|
|---|
| 22 | cfalib_DATA = builtins.cf extras.cf prelude.cf
|
|---|
| 23 | noinst_DATA = ../libcfa/libcfa-prelude.c
|
|---|
| 24 |
|
|---|
| 25 | # create extra forward types/declarations to reduce inclusion of library files
|
|---|
| 26 | extras.cf : extras.regx extras.c
|
|---|
| 27 | ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf
|
|---|
| 28 |
|
|---|
| 29 | # create forward declarations for gcc builtins
|
|---|
| 30 | builtins.cf : builtins.c
|
|---|
| 31 | ${AM_V_GEN}if [ -e $< ] ; then \
|
|---|
| 32 | @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \
|
|---|
| 33 | fi
|
|---|
| 34 |
|
|---|
| 35 | builtins.c : builtins.def prototypes.awk
|
|---|
| 36 | ${AM_V_GEN}if [ -e $< ] ; then \
|
|---|
| 37 | @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \
|
|---|
| 38 | fi
|
|---|
| 39 |
|
|---|
| 40 | builtins.def :
|
|---|
| 41 |
|
|---|
| 42 | prototypes.awk :
|
|---|
| 43 |
|
|---|
| 44 | ../libcfa/libcfa-prelude.c : prelude.cf extras.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp
|
|---|
| 45 | ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -l prelude.cf $@ # use src/cfa-cpp as not in lib until after install
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 | MAINTAINERCLEANFILES = builtins.c builtins.cf extras.cf ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}}
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.