repo.or.cz
/
jvlima.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix.
[jvlima.git]
/
lbm
/
gpu
/
Makefile
blob
f932bdbf02c46051a6608b09733fe51d457f2818
1
2
CC
:=
nvcc
3
CFLAGS
:=
4
PROGS
:=
lb
5
LDFLAGS
:=
6
7
all
: $(
PROGS
)
8
lb
:
lb.cu main.cu
9
$(
CC
) $(
CFLAGS
) -
o
$
@
$
^
$(
LDFLAGS
)
10
clean
:
11
rm
-
f
$(
PROGS
) *
.o