SCM Repository
Annotation of /benchmarks/programs/vr-lite-cam/Makefile.in
Parent Directory
|
Revision Log
Revision 1538 - (view) (download)
1 : | jhr | 1533 | # Makefile |
2 : | # | ||
3 : | # COPYRIGHT (c) 2011 The Diderot Project (http://diderot-language.cs.uchicago.edu) | ||
4 : | # All rights reserved. | ||
5 : | # | ||
6 : | |||
7 : | SHELL = @SHELL@ | ||
8 : | @SET_MAKE@ | ||
9 : | |||
10 : | # | ||
11 : | # tools and flags | ||
12 : | # | ||
13 : | CC = @CC@ | ||
14 : | INCLUDES = -I@TEEM_DIR@/include | ||
15 : | CPPFLAGS = @CPPFLAGS@ $(INCLUDES) | ||
16 : | CFLAGS = @CFLAGS@ @CFLAG_M64@ | ||
17 : | LDPATHS = -L@TEEM_DIR@/lib @LDPATHS@ | ||
18 : | jhr | 1538 | LIBS = -lteem -lpng -lz @LIBM@ |
19 : | jhr | 1533 | LDFLAGS = $(LDPATHS) $(LIBS) |
20 : | ifeq ($(OS),Linux) | ||
21 : | LDFLAGS += -Wl,-rpath=@TEEM_DIR@/lib | ||
22 : | endif | ||
23 : | |||
24 : | jhr | 1538 | TARGETS = bmark-diderot bmark-teem |
25 : | jhr | 1533 | |
26 : | jhr | 1538 | .PHONY: all |
27 : | all: $(TARGETS) | ||
28 : | jhr | 1533 | |
29 : | jhr | 1538 | bmark-diderot: bmark-diderot.diderot |
30 : | diderotc $(DIDEROTC_FLAGS) bmark-diderot.bmark-diderot | ||
31 : | |||
32 : | bmark-teem: bmark-teem.c | ||
33 : | $(CC) -o $(TARGET) $(CPPFLAGS) $(CFLAGS) bmark-teem.c $(LDFLAGS) | ||
34 : | |||
35 : | jhr | 1533 | #################### Cleanup #################### |
36 : | |||
37 : | jhr | 1538 | include @BMARKS_MKDIR@/clean-rules.gmk |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |