Makefile 841 B

123456789101112131415161718192021222324252627282930313233
  1. #Makefile for NANDemul MTD
  2. #
  3. # NB this is not yet suitable for putting into the kernel tree.
  4. # YAFFS: Yet another Flash File System. 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@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. ## Change or override KERNELDIR to your kernel
  15. ## comment out USE_xxxx if you don't want these features.
  16. KERNELDIR = /usr/src/kernel-headers-2.4.27
  17. CFLAGS = -D__KERNEL__ -DMODULE -I$(KERNELDIR)/include -O2 -Wall -g
  18. TARGET = nandemul2k.o
  19. default: $(TARGET)
  20. clean:
  21. rm -f $(TARGET)
  22. $(TARGET): %.o: %.c
  23. gcc -c $(CFLAGS) $< -o $@