xref: /netbsd-src/external/bsd/wpa/dist/src/lib.rules (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1ifndef CC
2CC=gcc
3endif
4
5ifndef CFLAGS
6CFLAGS = -MMD -O2 -Wall -g
7endif
8
9CFLAGS += -I.. -I../utils
10
11
12Q=@
13E=echo
14ifeq ($(V), 1)
15Q=
16E=true
17endif
18ifeq ($(QUIET), 1)
19Q=@
20E=true
21endif
22
23%.o: %.c
24	$(Q)$(CC) -c -o $@ $(CFLAGS) $<
25	@$(E) "  CC " $<
26