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


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

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


desc
@@



1.1
log
@Initial revision
@
text
@#
# Makefile for GCOV profiling kernel module
#

#KERNELDIR := ../linux-2.5.73
CFLAGS := $(CFLAGS) -Wall -g

ifneq ($(KERNELRELEASE),)

obj-m	:= LtpfsCmds.o
obj-p   := ltpfstest
else
KDIR	:= /lib/modules/$(shell uname -r)/build
PWD	:= $(shell pwd)

default:
	$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
	gcc  $(CFLAGS) -o ltpfstest -lm  main.c 
#	$(MAKE) -C $(KERNELDIR) SUBDIRS=$(PWD) modules
endif

clean:
	rm -f LtpfsCmds.o  
	rm -f LtpfsCmds.ko 
	rm -f LtpfsCmds.bb
	rm -f LtpfsCmds.bbg
	rm -f LtpfsCmds.mod.c
	rm -f LtpfsCmds.mod.o
	rm -f .*.mod*
	rm -f .*.cmd
@


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
@@
