remove duplicate entry
[ipfw-google.git] / Makefile.inc
1 # $Id$
2 # GNU makefile header for ipfw/kipfw building
3 BSD_HEAD ?= ~/FreeBSD/head
4 OSARCH := $(shell uname)
5 OSARCH := $(findstring $(OSARCH),FreeBSD Linux Darwin)
6 ifeq ($(OSARCH),)
7     OSARCH := Windows
8 endif
9 OBJDIR=mia
10
11 KSRC ?= /lib/modules/$(shell uname -r)/build
12 ifneq ($V,1) # no echo
13     MSG=@echo
14     HIDE=@
15 else
16     MSG=@\#
17     HIDE=
18 endif
19
20 .c.o:
21         $(MSG) "   CC $<"
22         $(HIDE) $(CC) $(CFLAGS) -c $< -o $@
23