repo.or.cz
/
ps3freebsd_ps3gpu_test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
test RSX DMA with positive and negative pitch values
[ps3freebsd_ps3gpu_test.git]
/
Makefile
blob
1b788a803355f3a0136f5896904acf2ad77872f3
1
2
CC
=
gcc
3
CFLAGS
=-
Wall
-
O2
-
g
4
LDFLAGS
=
5
SRC
=
ps3gpu_test.c
6
OBJ
=$(
SRC
:
.c
=
.o
)
7
TARGET
=
ps3gpu_test
8
9
all
: $(
TARGET
)
10
11
$(
TARGET
): $(
OBJ
)
12
$(
CC
) $(
LDFLAGS
) -
o
$
@
$(
OBJ
)
13
14
%
.o
: %
.c
15
$(
CC
) $(
CFLAGS
) -
c
$<
16
17
clean
:
18
rm
-
f
$(
OBJ
) $(
TARGET
)