repo.or.cz
/
neverball.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make tilt limit angle independent (remove extra diagonal acceleration)
[neverball.git]
/
contrib
/
Makefile
blob
1a50dd0090f003f073d33c2ed8360a7a52dd9b7f
1
CFLAGS
:= -
Wall
-
g
-
ansi
-
pedantic
2
3
CURVE_TARG
:=
curve
$(
EXT
)
4
CURVE_SRCS
:=
curve.c
5
CURVE_OBJS
:= $(
CURVE_SRCS
:%
.c
=%
.o
)
6
7
all
: $(
CURVE_TARG
)
8
9
$(
CURVE_TARG
): $(
CURVE_OBJS
)
10
$(
CC
) $(
CFLAGS
) -
o
$
@
$(
CURVE_OBJS
) -
lm
11
12
clean
:
13
$(
RM
) $(
CURVE_TARG
) $(
CURVE_OBJS
)