SCM Repository
[diderot] / examples / vr-demo / Makefile.in |
Diff of /examples/vr-demo/Makefile.in
Parent Directory
|
Revision Log
|
Patch
revision 2058, Tue Oct 30 10:38:25 2012 UTC | revision 2063, Wed Oct 31 18:36:09 2012 UTC | |
---|---|---|
# | Line 1 | Line 1 |
1 | # Makefile for vr-lite viewer demo | # Makefile for VR viewer demo |
2 | # | # |
3 | # COPYRIGHT (c) 2012 The Diderot Project | # COPYRIGHT (c) 2012 The Diderot Project |
4 | # All rights reserved. | # All rights reserved. |
# | Line 7 | Line 7 |
7 | SHELL = /bin/sh | SHELL = /bin/sh |
8 | ||
9 | CC = @CC@ | CC = @CC@ |
10 | CPPFLAGS = -I../util @CPPFLAGS@ @TEEM_CPPFLAGS@ @ATB_CPPFLAGS@ @GLFW_CFLAGS@ | CPPFLAGS = -I../util @CPPFLAGS@ @TEEM_CPPFLAGS@ @GLFW_CFLAGS@ |
11 | CFLAGS = @CFLAGS@ -O3 | CFLAGS = @CFLAGS@ -O3 |
12 | LDFLAGS = @LDPATHS@ @TEEM_LDFLAGS@ @ATB_LDFLAGS@ @GLFW_LIBS@ -lpng | LDFLAGS = @LDPATHS@ @TEEM_LDFLAGS@ @GLFW_LIBS@ -lpng |
13 | ||
14 | DIDEROTC = @DIDEROTC@ | DIDEROTC = @DIDEROTC@ |
15 | DIDEROTC_FLAGS = --namespace=VR --target=pthread | DIDEROTC_FLAGS = --namespace=VR --target=pthread |
16 | ||
17 | UTIL_SRCS = ../util/util.c ../util/load-png.c | UTIL_SRCS = ../util/util.c |
18 | ||
19 | vr: main.c vr-lite.o $(UTIL_SRCS) | vr: main.c vr.o $(UTIL_SRCS) |
20 | $(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) main.c vr-lite.o $(UTIL_SRCS) | $(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) main.c vr.o $(UTIL_SRCS) |
21 | ||
22 | vr-lite.o: vr-lite.diderot | vr.o: vr.diderot |
23 | $(DIDEROTC) $(DIDEROTC_FLAGS) vr-lite.diderot | $(DIDEROTC) $(DIDEROTC_FLAGS) vr.diderot |
24 | ||
25 | clean: | clean: |
26 | rm -rf vr vr-lite.o vr-lite.c vr-lite.h | rm -rf vr vr.o vr.c vr.h |
27 | ||
28 | dist-clean: clean | |
29 | rm -f Makefile |
|
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |