source: src/libcfa/Makefile.am @ f773f67

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since f773f67 was f773f67, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

added assertf to libcfa

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[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
[6d665d9]13## Last Modified On : Fri Aug 26 12:03:37 2016
14## Update Count     : 199
[00cc023]15###############################################################################
16
[a922e34]17# create object files in directory with source files
18AUTOMAKE_OPTIONS = subdir-objects
19
[00cc023]20lib_LIBRARIES = libcfa.a
21
22# put into lib for now
23cfalibdir = ${libdir}
[159c62e]24cfalib_DATA = builtins.cf extras.cf prelude.cf
[00cc023]25
[a922e34]26# create extra forward types/declarations to reduce inclusion of library files
[159c62e]27extras.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]31builtins.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
36builtins.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
41builtins.def :
42
[db82596]43prototypes.awk :
44
[159c62e]45MAINTAINERCLEANFILES = builtins.cf extras.cf ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}}
[d3b7937]46
47#--------------------------------------------------
[aa30dc0]48
[159c62e]49libcfa-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
52libcfa-prelude.o : libcfa-prelude.c
[d0542c4]53         ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -c -o $@ $<
[d3b7937]54
[35f9114]55CFLAGS = -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]56CC = ${abs_top_srcdir}/src/driver/cfa
[d3b7937]57
[f773f67]58headers = limits stdlib math iostream fstream iterator rational assert containers/vector concurrency/threads
[0e76cf4f]59runtimehdrs = concurrency
[89ce869]60libobjs = ${headers:=.o}
[ac78e25]61
[89ce869]62# extensionless header files are overridden by -o flag in default makerule => explicitly override default rule to silently do nothing
63% : %.c
64        @true
[ac78e25]65
[d0542c4]66${libobjs} : ${abs_top_srcdir}/src/driver/cfa-cpp ${cfalib_DATA} # add dependency to cfa-cpp so all libraries are rebuilt with new translator
[d3b7937]67
[7f8b740]68libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c}
[bd85400]69
[ed0e67a]70stdhdr = ${shell echo stdhdr/*}
71
72nobase_include_HEADERS = ${headers} ${stdhdr}
[d3b7937]73
[f326f99]74CLEANFILES = libcfa-prelude.c
[159c62e]75
76maintainer-clean-local:
77        -rm -rf ${includedir}/*
Note: See TracBrowser for help on using the repository browser.