repo.or.cz
/
fpmath-consensus.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
support fma
[fpmath-consensus.git]
/
impl-libc
/
Makefile
blob
9160564d6e931a9f526aa3150dcc5276bceec0e8
1
.SUFFIXES
:
2
.SUFFIXES
:
.o .c
3
4
CFLAGS ?
=
5
LDFLAGS ?
=
6
7
CFLAGS
+= -
std
=
c99
-
D_POSIX_C_SOURCE
=
200809L
8
CFLAGS
+= -
Werror
-
Wall
-
Wextra
9
10
default
:
impl-libc
11
12
impl-libc
:
impl-libc.o
13
$(
CC
) -
o
$
@
$
^
$(
LDFLAGS
) -
lm
14
15
impl-libc.o
:
impl-libc.c
16
$(
CC
) $(
CFLAGS
) -
c
-
o
$
@
$<
17
18
clean
:
19
rm
-
f impl-libc.o
20
rm
-
f impl-libc