rtl8188eu/hostapd-0.8/src/lib.rules
2016-01-01 14:29:11 +08:00

21 lines
235 B
Text

ifndef CC
CC=gcc
endif
ifndef CFLAGS
CFLAGS = -MMD -O3 -pipe -ffast-math -ftree-vectorize -Wall
endif
CFLAGS += -I.. -I../utils
Q=@
E=echo
ifeq ($(V), 1)
Q=
E=true
endif
%.o: %.c
$(Q)$(CC) -c -o $@ $(CFLAGS) $<
@$(E) " CC " $<