source: benchmark/io/http/Makefile.am @ 41c19b4

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 41c19b4 was d738aeb, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

Added makefile for http server

  • Property mode set to 100644
File size: 1.2 KB
Line 
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
17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
18ACLOCAL_AMFLAGS  = -I automake
19
20# applies to both programs
21include $(top_srcdir)/tools/build/cfa.make
22
23AM_CFLAGS = -O2 -Wall -Wextra -I$(srcdir) -lrt -pthread # -Werror
24AM_CFAFLAGS = -quiet -nodebug
25
26EXTRA_PROGRAMS = httpforall .dummy_hack
27
28nodist_httpforall_SOURCES = \
29        filecache.cfa \
30        filecache.hfa \
31        main.cfa \
32        options.cfa \
33        options.hfa \
34        protocol.cfa \
35        protocol.hfa \
36        worker.cfa \
37        worker.hfa
38
39nodist__dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp
40
41# automake doesn't know we still need C rules so pretend like we have a C program
42.dummy_hack.c:
43        @echo "int main() { return 0; }" > ${@}
44
45.dummy_hackxx.cpp:
46        @echo "int bar() { return 0; }" > ${@}
Note: See TracBrowser for help on using the repository browser.