ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since dd92fe9 was 2b2f59d, checked in by Thierry Delisle <tdelisle@…>, 5 years ago |
fix ld flags for httpforall
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[d738aeb] | 1 | ######################## -*- Mode: Makefile-Automake -*- ######################
|
---|
| 2 | ##
|
---|
| 3 | ## Cforall Version 1.0.0 Copyright (C) 2020 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 : Thierry Delisle
|
---|
| 11 | ## Created On : Mon Nov 30 14:01:00 2020
|
---|
| 12 | ## Last Modified By :
|
---|
| 13 | ## Last Modified On :
|
---|
| 14 | ## Update Count :
|
---|
| 15 | ###############################################################################
|
---|
| 16 |
|
---|
| 17 | AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names
|
---|
| 18 | ACLOCAL_AMFLAGS = -I automake
|
---|
| 19 |
|
---|
| 20 | # applies to both programs
|
---|
| 21 | include $(top_srcdir)/tools/build/cfa.make
|
---|
| 22 |
|
---|
| 23 | AM_CFLAGS = -O2 -Wall -Wextra -I$(srcdir) -lrt -pthread # -Werror
|
---|
| 24 | AM_CFAFLAGS = -quiet -nodebug
|
---|
[2b2f59d] | 25 | AM_LDFLAGS = -quiet -nodebug
|
---|
[d738aeb] | 26 |
|
---|
[5936244] | 27 | CCLD = $(CFACC)
|
---|
| 28 |
|
---|
[d738aeb] | 29 | EXTRA_PROGRAMS = httpforall .dummy_hack
|
---|
| 30 |
|
---|
| 31 | nodist_httpforall_SOURCES = \
|
---|
| 32 | filecache.cfa \
|
---|
| 33 | filecache.hfa \
|
---|
| 34 | main.cfa \
|
---|
| 35 | options.cfa \
|
---|
| 36 | options.hfa \
|
---|
| 37 | protocol.cfa \
|
---|
| 38 | protocol.hfa \
|
---|
| 39 | worker.cfa \
|
---|
| 40 | worker.hfa
|
---|
| 41 |
|
---|
| 42 | nodist__dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp
|
---|
| 43 |
|
---|
| 44 | # automake doesn't know we still need C rules so pretend like we have a C program
|
---|
| 45 | .dummy_hack.c:
|
---|
| 46 | @echo "int main() { return 0; }" > ${@}
|
---|
| 47 |
|
---|
| 48 | .dummy_hackxx.cpp:
|
---|
| 49 | @echo "int bar() { return 0; }" > ${@}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.