SCM Repository
[diderot] Annotation of /branches/vis12/test/vr-lite-cam/Makefile.in
Annotation of /branches/vis12/test/vr-lite-cam/Makefile.in
Parent Directory
|
Revision Log
Revision 1723 -
(view)
(download)
1 : |
jhr |
1718 |
# Makefile for vr-lite-cam example
|
2 : |
|
|
#
|
3 : |
|
|
# COPYRIGHT (c) 2012 The Diderot Project
|
4 : |
|
|
# All rights reserved.
|
5 : |
|
|
#
|
6 : |
|
|
# @configure_input@
|
7 : |
|
|
#
|
8 : |
|
|
|
9 : |
|
|
CC = @CC@
|
10 : |
|
|
INCLUDES = -I@DIDEROT_SRCDIR@/include -I@TEEM_DIR@/include
|
11 : |
|
|
CPPFLAGS = @CPPFLAGS@ $(INCLUDES)
|
12 : |
jhr |
1723 |
CFLAGS = @CFLAGS@ @CFLAG_M64@ -g
|
13 : |
jhr |
1718 |
LDFLAGS = -L@TEEM_DIR@/lib -lteem @LIBM@
|
14 : |
|
|
|
15 : |
|
|
DIDEROTC = @DIDEROT_BINDIR@/diderotc
|
16 : |
jhr |
1723 |
DIDEROTC_FLAGS = --namespace=VR --debug
|
17 : |
jhr |
1718 |
|
18 : |
|
|
vr-lite-cam: main.c vr-lite-cam.c
|
19 : |
|
|
$(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) main.c vr-lite-cam.c
|
20 : |
|
|
|
21 : |
|
|
vr-lite-cam.c: vr-lite-cam.diderot
|
22 : |
|
|
$(DIDEROTC) $(DIDEROTC_FLAGS) vr-lite-cam.diderot
|
23 : |
|
|
|
24 : |
|
|
#################### Cleanup ####################
|
25 : |
|
|
|
26 : |
|
|
CLEAN_SUBDIRS =
|
27 : |
|
|
|
28 : |
|
|
CLEAN_FILES += vr-lite-cam vr-lite-cam.c vr-lite-cam.h
|
29 : |
|
|
|
30 : |
|
|
DISTCLEAN_FILES += Makefile
|
31 : |
|
|
|
32 : |
|
|
DEVCLEAN_FILES =
|
33 : |
|
|
|
34 : |
|
|
include @DIDEROT_MKDIR@/clean-rules.gmk
|