1 #Makefile for NANDemul MTD 2 # 3 # NB this is not yet suitable for putting into the kernel tree. 4 # YAFFS: Yet another FFS. A NAND-flash specific file system. 5 # 6 # Copyright (C) 2002 Aleph One Ltd. 7 # for Toby Churchill Ltd and Brightstar Engineering 8 # 9 # Created by Charles Manning <charles (at] aleph1.co.uk> 10 # 11 # This program is free software; you can redistribute it and/or modify 12 # it under the terms of the GNU General Public License version 2 as 13 # published by the Free Software Foundation. 14 15 ## Change or override KERNELDIR to your kernel 16 ## comment out USE_xxxx if you don't want these features. 17 18 KERNELDIR = /usr/src/kernel-headers-2.4.27 19 20 CFLAGS = -D__KERNEL__ -DMODULE -I$(KERNELDIR)/include -O2 -Wall -g 21 22 23 24 TARGET = nandemul2k.o 25 26 default: $(TARGET) 27 28 clean: 29 rm -f $(TARGET) 30 31 $(TARGET): %.o: %.c 32 gcc -c $(CFLAGS) $< -o $@ 33 34