| [00cc023] | 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 | ## | 
|---|
| [d63eeb0] | 8 | ## Makefile.am -- | 
|---|
| [00cc023] | 9 | ## | 
|---|
|  | 10 | ## Author           : Peter A. Buhr | 
|---|
|  | 11 | ## Created On       : Sun May 31 08:54:01 2015 | 
|---|
|  | 12 | ## Last Modified By : Peter A. Buhr | 
|---|
| [6f7424a] | 13 | ## Last Modified On : Thu Aug 11 15:36:32 2016 | 
|---|
|  | 14 | ## Update Count     : 198 | 
|---|
| [00cc023] | 15 | ############################################################################### | 
|---|
|  | 16 |  | 
|---|
| [a922e34] | 17 | # create object files in directory with source files | 
|---|
|  | 18 | AUTOMAKE_OPTIONS = subdir-objects | 
|---|
|  | 19 |  | 
|---|
| [00cc023] | 20 | lib_LIBRARIES = libcfa.a | 
|---|
|  | 21 |  | 
|---|
|  | 22 | # put into lib for now | 
|---|
|  | 23 | cfalibdir = ${libdir} | 
|---|
| [159c62e] | 24 | cfalib_DATA = builtins.cf extras.cf prelude.cf | 
|---|
| [00cc023] | 25 |  | 
|---|
| [a922e34] | 26 | # create extra forward types/declarations to reduce inclusion of library files | 
|---|
| [159c62e] | 27 | extras.cf : extras.regx extras.c | 
|---|
| [d0542c4] | 28 | ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf | 
|---|
| [00cc023] | 29 |  | 
|---|
| [a922e34] | 30 | # create forward declarations for gcc builtins | 
|---|
| [00cc023] | 31 | builtins.cf : builtins.c | 
|---|
| [d0542c4] | 32 | ${AM_V_GEN}if [ -e $< ] ; then \ | 
|---|
| [00cc023] | 33 | @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \ | 
|---|
|  | 34 | fi | 
|---|
|  | 35 |  | 
|---|
|  | 36 | builtins.c : builtins.def prototypes.awk | 
|---|
| [d0542c4] | 37 | ${AM_V_GEN}if [ -e $< ] ; then \ | 
|---|
| [00cc023] | 38 | @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \ | 
|---|
|  | 39 | fi | 
|---|
|  | 40 |  | 
|---|
|  | 41 | builtins.def : | 
|---|
|  | 42 |  | 
|---|
| [db82596] | 43 | prototypes.awk : | 
|---|
|  | 44 |  | 
|---|
| [159c62e] | 45 | MAINTAINERCLEANFILES = builtins.cf extras.cf ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}} | 
|---|
| [d3b7937] | 46 |  | 
|---|
|  | 47 | #-------------------------------------------------- | 
|---|
| [aa30dc0] | 48 |  | 
|---|
| [159c62e] | 49 | libcfa-prelude.c : ${srcdir}/prelude.cf ${srcdir}/extras.cf ${srcdir}/builtins.cf | 
|---|
| [d0542c4] | 50 | ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -l ${srcdir}/prelude.cf $@  # use src/cfa-cpp as not in lib until after install | 
|---|
| [00cc023] | 51 |  | 
|---|
|  | 52 | libcfa-prelude.o : libcfa-prelude.c | 
|---|
| [d0542c4] | 53 | ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -c -o $@ $< | 
|---|
| [d3b7937] | 54 |  | 
|---|
| [35f9114] | 55 | CFLAGS = -quiet -no-include-stdhdr -g -Wall -Wno-unused-function @CFA_FLAGS@ -B${abs_top_srcdir}/src/driver -XCFA -t # TEMPORARY: does not build with -O2 | 
|---|
| [d63eeb0] | 56 | CC = ${abs_top_srcdir}/src/driver/cfa | 
|---|
| [d3b7937] | 57 |  | 
|---|
| [6f7424a] | 58 | headers = limits stdlib math iostream fstream iterator rational # containers/vector | 
|---|
| [89ce869] | 59 | libobjs = ${headers:=.o} | 
|---|
| [ac78e25] | 60 |  | 
|---|
| [89ce869] | 61 | # extensionless header files are overridden by -o flag in default makerule => explicitly override default rule to silently do nothing | 
|---|
|  | 62 | % : %.c | 
|---|
|  | 63 | @true | 
|---|
| [ac78e25] | 64 |  | 
|---|
| [d0542c4] | 65 | ${libobjs} : ${abs_top_srcdir}/src/driver/cfa-cpp ${cfalib_DATA} # add dependency to cfa-cpp so all libraries are rebuilt with new translator | 
|---|
| [d3b7937] | 66 |  | 
|---|
| [7f8b740] | 67 | libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} | 
|---|
| [bd85400] | 68 |  | 
|---|
| [ed0e67a] | 69 | stdhdr = ${shell echo stdhdr/*} | 
|---|
|  | 70 |  | 
|---|
|  | 71 | nobase_include_HEADERS = ${headers} ${stdhdr} | 
|---|
| [d3b7937] | 72 |  | 
|---|
| [f326f99] | 73 | CLEANFILES = libcfa-prelude.c | 
|---|
| [159c62e] | 74 |  | 
|---|
|  | 75 | maintainer-clean-local: | 
|---|
|  | 76 | -rm -rf ${includedir}/* | 
|---|