#Makefile for YAFFS as a module # # NB this is not yet suitable for putting into the kernel tree. # YAFFS: Yet another FFS. A NAND-flash specific file system. # # Copyright (C) 2002 Aleph One Ltd. # for Toby Churchill Ltd and Brightstar Engineering # # Created by Charles Manning # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. ## Change or override KERNELDIR to your kernel ## comment out USE_xxxx if you don't want these features. KERNELDIR = /usr/src/kernel-headers-2.4.18 USE_RAM_FOR_TEST = -DYAFFS_RAM_ENABLED USE_MTD = -DYAFFS_MTD_ENABLED CFLAGS = -D__KERNEL__ -DMODULE $(USE_RAM_FOR_TEST) $(USE_MTD) -I$(KERNELDIR)/include -O2 -Wall OBJS = yaffs_fs.o yaffs_guts.o yaffs_ramem.o yaffs_mtdif.o all: yaffs.o $(OBJS): %.o: %.c gcc -c $(CFLAGS) $< -o $@ yaffs.o: $(OBJS) ld -r $(OBJS) -o $@ clean: rm -f $(OBJS) core