projects
/
MicroTrace.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2223440980a7dd021cd952cae6ee63b543cae289
[MicroTrace.git]
/
Makefile
1
.SUFFIXES
:
.
cxx
.a
2
3
all
:
MicroTrace
4
5
CC
=
g
++
6
CFLAGS
= -
O3
-
Wall
7
8
OBJ
=
MicroTrace.o\
9
Vec3f.o\
10
Camera.o\
11
PerspectiveCamera.o\
12
Image.o\
13
Ray.o
14
15
%
.o
: %
.
cxx
*
.hxx
16
$(
CC
) $(
CFLAGS
) -
c
$< -
o
$
@
17
18
%
.a
:
19
ar
r
$
@
$<
20
21
22
23
MicroTrace
: $(
OBJ
)
24
25
clean
:
26
rm
*
.o
*
.a MicroTrace
This page took
0.044732 seconds
and
3
git commands to generate.