head	1.3;
access;
symbols
	LTP_20031204:1.1.1.1 LINUX_TEST_PROJECT:1.1.1;
locks; strict;
comment	@# @;


1.3
date	2004.01.01.11.32.41;	author mtm;	state Exp;
branches;
next	1.2;

1.2
date	2003.12.31.14.57.46;	author mtm;	state Exp;
branches;
next	1.1;

1.1
date	2003.12.31.08.57.46;	author mtm;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2003.12.31.08.57.46;	author mtm;	state Exp;
branches;
next	;


desc
@@


1.3
log
@o Spell out the subdirectories so it's easier to hook and un-hook them
  from the build
o Hookup the Open Posix Test Suite to the build
@
text
@# $FreeBSD$
#SUBDIRS = `ls */Makefile | sed "s/Makefile//g" | grep -v open`
SUBDIRS = misc \
	  open_posix_testsuite
#	  commands \
#	  kernel \
#	  network \

all:
	@@set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i ; done

install:
	mkdir -p bin
	@@set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i install ; done

clean:
	rm -rf bin/
	@@set -e; for i in $(SUBDIRS) ; do $(MAKE) -C $$i clean ; done

@


1.2
log
@For the moment enable only the tests under misc/
@
text
@d2 6
a7 1
SUBDIRS = `ls */Makefile | sed "s/Makefile//g" | grep -v open | grep -v kernel | grep -v commands | grep -v network`
@


1.1
log
@Initial revision
@
text
@d1 2
a2 1
SUBDIRS = `ls */Makefile | sed "s/Makefile//g" | grep -v open`
@


1.1.1.1
log
@Initial import of the Linux Test Project (http://ltp.sourceforge.net).

This import is minus the Posix test suite, which will be imported separately,
and the HPI suite, which doesn't concern us.
@
text
@@
