repo.or.cz
/
hostap-gosc2009.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add BSS table to track scan results without dropping information
[hostap-gosc2009.git]
/
src
/
lib.rules
blob
b260d25a050cb00293d247a605e29975c05c85b0
1
ifndef CC
2
CC=gcc
3
endif
4
5
ifndef CFLAGS
6
CFLAGS = -MMD -O2 -Wall -g
7
endif
8
9
CFLAGS += -I.. -I../utils
10
11
12
Q=@
13
E=echo
14
ifeq ($(V), 1)
15
Q=
16
E=true
17
endif
18
19
%.o: %.c
20
$(Q)$(CC) -c -o $@ $(CFLAGS) $<
21
@$(E) " CC " $<