#Makefile for mkyaffs # # 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 KERNELDIR = /usr/src/kernel-headers-2.4.18 CFLAGS = -I$(KERNELDIR)/include -O2 -Wall OBJS = mkyaffs.o all: mkyaffs $(OBJS): %.o: %.c gcc -c $(CFLAGS) $< -o $@ mkyaffs: $(OBJS) gcc -o $@ $(OBJS) clean: rm -f $(OBJS) core