From owner-svn-src-user@FreeBSD.ORG Thu Feb 4 17:26:11 2010 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B730106566B; Thu, 4 Feb 2010 17:26:11 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6CCD28FC29; Thu, 4 Feb 2010 17:26:11 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o14HQBtu081675; Thu, 4 Feb 2010 17:26:11 GMT (envelope-from luigi@svn.freebsd.org) Received: (from luigi@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o14HQBog081673; Thu, 4 Feb 2010 17:26:11 GMT (envelope-from luigi@svn.freebsd.org) Message-Id: <201002041726.o14HQBog081673@svn.freebsd.org> From: Luigi Rizzo Date: Thu, 4 Feb 2010 17:26:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r203495 - user/luigi/ipfw3-head/sys/netinet/ipfw/test X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2010 17:26:11 -0000 Author: luigi Date: Thu Feb 4 17:26:11 2010 New Revision: 203495 URL: http://svn.freebsd.org/changeset/base/203495 Log: adapt to gmake and linux Modified: user/luigi/ipfw3-head/sys/netinet/ipfw/test/Makefile Modified: user/luigi/ipfw3-head/sys/netinet/ipfw/test/Makefile ============================================================================== --- user/luigi/ipfw3-head/sys/netinet/ipfw/test/Makefile Thu Feb 4 17:13:38 2010 (r203494) +++ user/luigi/ipfw3-head/sys/netinet/ipfw/test/Makefile Thu Feb 4 17:26:11 2010 (r203495) @@ -1,4 +1,5 @@ # Makefile for building userland tests +# this is written in a form compatible with gmake SCHED_SRCS = test_dn_sched.c SCHED_SRCS += dn_sched_fifo.c @@ -16,15 +17,15 @@ HEAP_OBJS=$(HEAP_SRCS:.c=.o) VPATH= .:.. CFLAGS = -I.. -I. -Wall -Werror -O3 -DIPFW -TARGETS= test_heap test_sched +TARGETS= test_sched # no test_heap by default all: $(TARGETS) test_heap : $(HEAP_OBJS) - $(CC) -o $@ $> + $(CC) -o $@ $(HEAP_OBJS) test_sched : $(SCHED_OBJS) - $(CC) -o $@ $> + $(CC) -o $@ $(SCHED_OBJS) $(SCHED_OBJS): dn_test.h main.o: mylist.h