X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2FMakefile;h=a65c0e6e86220a8e6b43477af4914a7c2816faa6;hp=47a25a9be05be151c51efb63a938d4bfc4acc975;hb=e8cfe05cf0d057f6978c37943e51b17bb14664e3;hpb=a8e9cfa2968a5f16ff9ae578cc1d3202ebef8725 diff --git a/direct/Makefile b/direct/Makefile index 47a25a9..a65c0e6 100644 --- a/direct/Makefile +++ b/direct/Makefile @@ -1,7 +1,11 @@ # Makefile for YAFFS direct test # +# +# YAFFS: Yet another Flash File System. A NAND-flash specific file system. +# # Copyright (C) 2003 Aleph One Ltd. # +# # Created by Charles Manning # # This program is free software; you can redistribute it and/or modify @@ -10,11 +14,15 @@ # # NB Warning this Makefile does not include header dependencies. # -# $Id: Makefile,v 1.11 2006-09-21 08:13:59 charles Exp $ +# $Id: Makefile,v 1.16 2008-05-05 07:58:58 charles Exp $ #EXTRA_COMPILE_FLAGS = -DYAFFS_IGNORE_TAGS_ECC -CFLAGS = -Wall -DCONFIG_YAFFS_DIRECT -DCONFIG_YAFFS_SHORT_NAMES_IN_RAM -DCONFIG_YAFFS_YAFFS2 -g $(EXTRA_COMPILE_FLAGS) +CFLAGS = -DCONFIG_YAFFS_DIRECT -DCONFIG_YAFFS_SHORT_NAMES_IN_RAM -DCONFIG_YAFFS_YAFFS2 +CFLAGS += -DCONFIG_YAFFS_PROVIDE_DEFS -DCONFIG_YAFFSFS_PROVIDE_VALUES -DNO_Y_INLINE +CFLAGS += -Wall -g $(EXTRA_COMPILE_FLAGS) +#CFLAGS+= -fstack-check -O0 + #CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations #CFLAGS+= -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline @@ -34,7 +42,7 @@ ALLOBJS = $(DIRECTTESTOBJS) $(BOOTTESTOBJS) SYMLINKS = devextras.h yaffs_ecc.c yaffs_ecc.h yaffs_guts.c yaffs_guts.h yaffsinterface.h yportenv.h yaffs_tagscompat.c yaffs_tagscompat.h \ yaffs_packedtags1.c yaffs_packedtags1.h yaffs_packedtags2.c yaffs_packedtags2.h yaffs_nandemul2k.h \ - yaffs_nand.c yaffs_nand.h \ + yaffs_nand.c yaffs_nand.h yaffs_getblockinfo.h \ yaffs_tagsvalidity.c yaffs_tagsvalidity.h yaffs_checkptrw.h yaffs_checkptrw.c \ yaffs_qsort.c yaffs_qsort.h @@ -43,7 +51,7 @@ SYMLINKS = devextras.h yaffs_ecc.c yaffs_ecc.h yaffs_guts.c yaffs_guts.h yaffsin all: directtest2k $(ALLOBJS): %.o: %.c - gcc -c $(CFLAGS) $< -o $@ + gcc -c $(CFLAGS) -o $@ $< $(SYMLINKS): ln -s ../$@ $@