repo.or.cz
/
cu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix unused parameter warnings
[cu.git]
/
GNUmakefile
blob
9b1be566cbceae303fb1a533036632b6b7a1242b
1
FLAGS
:= -
O0
2
FLAGS
+= -
g
3
FLAGS
+= -
Wall
4
FLAGS
+= -
Wextra
5
#FLAGS += -Wno-unused-parameter
6
#FLAGS += -Wno-pointer-sign
7
#FLAGS += -Wno-implicit-fallthrough
8
#FLAGS += -s
9
FLAGS
+= -
D_GNU_SOURCE
10
FLAGS
+= $(
shell
pkg-config
--
cflags
--
libs libbsd-overlay libevent
)
11
12
cu
: *
.c
13
gcc
$(
FLAGS
) *
.c
-
o cu
14
15
.PHONY
:
clean
16
clean
:
17
rm
-
vf cu
18
19
cu
:
GNUmakefile